Виртуальная среда 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
# Create the virtual environment.
python -m venv venv
# Activate the env.
venv\Scripts\activate.bat
# for windows 10
py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
pip install virtualenv
cd projectfolder #go to project folder
virtualenv projectname #create the folder projectname
source projectname/bin/activate
#To create a virtual envoirnment in user/.env
mkvirtualenv env
# and to activate
# it can activate from being in any directory
workon env
$ python3 -m venv venv