Installing#

Python Version Requirements#

Make sure you are running Python 3.10 or above (3.12 recommended). You can check your Python version with:

python -V  # outputs the version of Python

uv can automatically manage Python versions for you - see the uv Python version documentation.

Installing with pip#

If you prefer pip, we recommend using a virtual environment:

python -m venv ./.venv       # Creates a virtual env in the current folder
source .venv/bin/activate    # Activates the venv (macOS/Linux)
# or on Windows: .venv\Scripts\activate

pip install folio_migration_tools

Test the installation:

folio-migration-tools -h