Select Git revision
preliminaries.md
GromeTT authored and
C.Albrecht
committed
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
preliminaries.md 767 B
Preliminaries
Requirements
- Python 3+
- recommended: virtualenv and optionally, but also recommended virtualenvwrapper.
In order to install virtualenv and virtualenvwrapper, just execute (after installing Python):
pip install virtualenv
pip install virtualenvwrapper-win
More Information on how to use virtualenv can be found here: The Hitchhiker's Guide to Python
Preliminaries
We recommend creating a virtual environment for the project (mkvirtualenv projectname
). After creating the environment, activate it (workon projectname
). Navigate to the root folder containing the requirements.txt
and install the required modules for the demo with (pip install -r requirements.txt
).