Answers for "create virtual enviornment"

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
4

setting p a virtual envioronment

#Creating a Virtual Environment | Windows 10
#Proceed to the folder were you want to create your environment, Then enter the following:
...\> py -m venv project_name
#To activate the environment, run:
...\> project_name\Scripts\activate.bat
#Then install Django using pip
...\> py -m pip install Django
Posted by: Guest on June-11-2020
0

create virtual enviornment

$ mkvirtualenv venv
Posted by: Guest on July-17-2021

Code answers related to "create virtual enviornment"

Browse Popular Code Answers by Language