environnement virtuel python
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
Modern Mosquito
python3 -m venv env
python -m virtualenv env #py2
source env/bin/activate
#all this is on same directory
# for windows 10
py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
pip install --user virtualenv
py -m venv env
.\env\Scripts\activate
python3 -m venv env
python3 -m pip install --user virtualenv
# At its core, the main purpose of Python virtual environments is to
# create an isolated environment for Python projects. This means that
# each project can have its own dependencies, regardless of what
# dependencies every other project has.