Answers for "make a new python environment"

4

creating virtual environment python

python3 -m venv tutorial-env
#name : tutorial-env
tutorial-envScriptsactivate 	#activate env
deactivate #deactivate env
Posted by: Guest on July-24-2020
0

how to create virtual environment in python

#-------FOR WINDOWS----------#
#installing venv
py -m pip install --user virtualenv
#creating virtual env
py -m venv env
#activating virtual env
.envScriptsactivate
Posted by: Guest on August-03-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 "make a new python environment"

Python Answers by Framework

Browse Popular Code Answers by Language