Virtual Environment (VENV)
AKA venv , that is better to use venv to allow using multiple versions and avoid to pollute your machine
!!! info A virtual environement ne require privileges
Create python venv
Here name defined is : pyvenv
python3 -m venv pyvenvSource it
source pyvenv/bin/activeDownload module.s
mkdir module; cd module
pip download module_nameUsing file
!!! info “Requirements.txt”
#### Requierements
You have to fill the module name wished to the `requierements.txt` file.
This file is used to build your envirement
echo "module_name" >> requirements.txtInstall virtual environement
pip install --no-index --find-links module/ -r requirements.txtLast updated on