Installation#

Via Python Package#

Install the package and required dependencies with:

pip install sinaps

Installation troubleshooting#

Sometimes the installation fails because of dependency conflicts or old version of already installed librairies First you can try to upgrade pip, in order to use the newest method to resolve dependency conflicts :

pip install pip --upgrade

If you cannot upgrade pip you can try :

pip install sinaps --use-feature=2020-resolver

If it conflicts with other dependencies requirement of your own environment, you could try to install sinaps in a virtual environment :

python3 -m venv sinaps_env
source sinaps_env/bin/activate
pip install sinaps