Answers for "virtual environment python activate"

45

python virtual environment

python3 -m venv env
python -m virtualenv env #py2

source env/bin/activate

#all this is on same directory
Posted by: Guest on June-05-2020
9

how to activate virtual environment in python

# for windows 10

py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
Posted by: Guest on May-09-2021
0

how to use virtual environment python

# for windows 10

py -m venv myvirtualenv
myvirtualenv\Scripts\activate #!!!! use "\" not "/" !!!!!
Posted by: Guest on April-10-2020

Code answers related to "virtual environment python activate"

Python Answers by Framework

Browse Popular Code Answers by Language