To install manta and anuran, it is best to use venv to make sure you do not get conflicting dependencies. The installation instructions are slightly different for Windows and Unix systems.
To make sure you are creating a Python 3 virtual environment, run venv as follows. Replace the path with a path on your Unix system. The demo folder will contain the virtual environment.
python3 -m venv /home/user/Documents/demo
It is possible that you cannot yet use venv. In that case, follow the instructions in the error message to download venv for your Unix system.
Activate or deactivate the virtual environment:
source /home/user/Documents/demo/bin/activate
deactivate
If you activate the virtual environment, your terminal should say (demo) before your username. With the activated environment, download and install manta and anuran.
python3 -m pip install git+https://github.com/ramellose/manta.git
python3 -m pip install git+https://github.com/ramellose/anuran.git
Test if you can run the software by calling the help command.
manta -h
anuran -h
To make sure you are creating a Python 3 virtual environment, run venv as follows. Replace the path with a path on your Windows system. The demo folder will contain the virtual environment.
python3 -m venv C:/user/Documents/demo
Activate or deactivate the virtual environment:
C:/user/Documents/demo/Scripts/activate.bat
deactivate
If you activate the virtual environment, your terminal should say (demo) before your username. With the activated environment, download and install manta and anuran.
python3 -m pip install git+https://github.com/ramellose/manta.git
python3 -m pip install git+https://github.com/ramellose/anuran.git
Test if you can run the software by calling the help command.
manta -h
anuran -h