Answers for "create virtual environment workon"

8

how to create virtual environment

# for windows 10

py -m venv myvirtualenv
myvirtualenvScriptsactivate #!!!! use "" not "/" !!!!!
Posted by: Guest on May-09-2021
2

how to create a new virtualenv

to make a new virtualenv: 
virtualenv env_name

             to activate this virtual environment:
source env_name/bin/activate (on mac and linux)
source env_name/Scripts/activate (on windows)
Posted by: Guest on July-26-2020

Code answers related to "create virtual environment workon"

Python Answers by Framework

Browse Popular Code Answers by Language