Frequently Asked Questions (FAQ)
Here it is a compreensive, but not an exaustive, list of questions that may appear in using or developing with asltk library.
If your doubt is not found in this page, please be free to open an Issue at the GitHub project page.
How do I install the asltk library?
You can install asltk using pip by running the following command:pip install asltk
Which version of Python is required to use `asltk`?
`asltk` requires Python 3.9 or higher. For the registration module (image alignment), Python 3.10+ is required. You can check your Python version by running:python --version
I’m getting a “ModuleNotFoundError” when trying to import asltk. What should I do?
Make sure that `asltk` is installed correctly. Run the following command to verify installation:pip show asltk
How can I update asltk to the latest version?
You can update the library by running:pip install --upgrade asltk
How do I install the registration module for image alignment?
The registration module is an optional extra that requires Python 3.10 or higher and the `antspyx` package. To install asltk with registration support, run:pip install asltk[registration]