This library is written for Python 3.6 and later.
-
In order to install the dependencies you need
pip
andvenv
modules.pip
is available in many Linux distributions (Ubuntu packagespython3-pip
, CentOS EPEL packagepython-pip
), and also as pip Python package.venv
is also available in many Linux distributions (Ubuntu packagepython3-venv
). In some of them is integrated into the Python 3.5 (or later) installation.
-
The creation of a virtual environment where to install WfExS backend dependencies is done running:
python3 -m venv .pyROenv
source .pyROenv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements.txt
- If you upgrade your Python installation (from version 3.6 to 3.7, for instance), or you move this folder to a different location after following this instructions, you may need to remove and reinstall the virtual environment.