Installation¶
There are two separate set of features shipped with this package:
contrib
(better handling of errors that return HTML instead of JSON)eos
(support for uploading files to EOS)
These can be installed using your favorite installation method below. For example,
# install eos support
python -m pip install itkdb[eos]
# install contrib
python -m pip install itkdb[contrib]
# install multiple features
python -m pip install itkdb[contrib,eos]
pip¶
itkdb is available on PyPI and can be installed with pip.
pip install itkdb
Warning
This method modifies the Python environment in which you choose to install. Consider instead using pipx or virtual environments to avoid dependency conflicts.
pipx¶
pipx allows for the global installation of Python applications in isolated environments.
pipx install itkdb
virtual environment¶
python -m venv venv
source venv/bin/activate
python -m pip install itkdb
Conda¶
See the feedstock for more details.
conda install -c conda-forge itkdb
or with mamba:
mamba install itkdb