Installation¶
Pre-requisites¶
- Python ≥3.10
- Conda (optional but recommended)
Install from PyPI¶
Install taxotagger package
# create an virtual environment
conda create -n venv-3.10 python=3.10
conda activate venv-3.10
# install the package (pre-release)
pip install --pre taxotagger # (1)!
- Taxotagger might be released as pre-release. To install the pre-release, you need the
--pre
option.