On my current system, I have a standard/full installation of Anki. I played around with the anki Python module and found that I can use it to do a lot of tasks that I was normally using the GUI for, but without launching the GUI.
If I wanted to trasfer to another system my custom Python script + the .anki2 collection file, what would be the minimum requirements for it to work as it does now?
My script only needs to import the following:
from anki.collection import Collection
from anki.collection import Card
from anki.collection import Note
Looking at the requirements described in the Anki docs, a full installation includes e.g the Qt framework. My script doesn’t seem to need it. Is it possible to achieve a “minimal” installation of anki? Is it possible to install just the anki Python module standalone? My immediate concern is that the anki Python module might rely on various backend bindings for its functionality and those would be missing from a standalone installation.
Thanks