Answers for "how to auto activate virtual env in python"

15

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

create and activate virtual environment with python 3

$ python3 -m venv ~/.virtualenvs/djangodev
$ source ~/.virtualenvs/djangodev/bin/activate
Posted by: Guest on April-21-2021

Code answers related to "how to auto activate virtual env in python"

Python Answers by Framework

Browse Popular Code Answers by Language