Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 755 Bytes

File metadata and controls

9 lines (8 loc) · 755 Bytes

Project's Python virtual environnement

The projet contains a python virtual environnement, which allows developpers to share a same set of python libraries, and their respective versions. Here is a great document on virtual environnements.

Usage of the virtual environnement:

The following commands consider you are in the installDependecies folder. You can add an remove package from a virtual environnement the same way you would do on your computer (with the use of pip).

  • To enter the virtual environnement: source ./enterVenv.sh
  • To save the virtual environnement: pip freeze > ./requirements.txt
  • To exit the virtual environnement: deactivate