For storing the information in the database, Python 3.5 or later is needed. The script used depends on standard libreries, plus the ones declared in requirements.txt.
-
In order to install the dependencies you need
pip
andvenv
Python modules.pip
is available in many Linux distributions (Ubuntu packagepython-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 these distributionsvenv
is integrated into the Python 3.5 (or later) installation.
-
The creation of a virtual environment and installation of the dependencies in that environment is done running:
cd DB/Neo4jScripts
python3 -m venv .pyDBenv
source .pyDBenv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt -c constraints.txt
deactivate
cd ../..
Moreover, you need docker
installed in your computer.