1#------FOR LINUX/MAC---------#
2#installing venv
3sudo apt-get install python3.6-venv
4#creating virtual env
5python3 -m venv env
6#activating virtual env
7source env/bin/activate
8
9
10#-------FOR WINDOWS----------#
11#installing venv
12py -m pip install --user virtualenv
13#creating virtual env
14py -m venv env
15#activating virtual env
16.\env\Scripts\activate
17
1pip install virtualenv
2cd projectfolder #go to project folder
3virtualenv projectname #create the folder projectname
4source projectname/bin/activate
1Create Virtual Environment
2
3 1. Install "vitrualenv" packages globally
4
5python3 -m pip install virtualenv
6
7Check installed version : virtualenv -V
8
9 2. Create a directory for your Virtual Environments
10
11Mkdir VirtialEnv
12
13 3. Move to this direcory
14
15 Cd VirtialEnv
16
17 4. Create your python virtual environment
18
19 virtualenv {name of your venv}
20 virtualenv myvenv
21 virtualenv myvenv -p python3
22
23 5. Activate virtual env
24 . Myvenv/bin/activate
25
26 /myvenv/bin/activate.bat (Windows)
27
28 6. Now your terminal is using this Virtual environment for your python project
29
30 Check python version
31
32 pythoon -V
33
34 7. After done your work you need to deactivate you Virtual env
35
36deactivate
1# First install virtualenv
2!pip3 install virtualenv
3
4# Go to the desired directory which you wish you run your virtual environment.
5cd project_directory
6
7# create a virtual environment called my_virtualenv
8virtualenv my_virtualenv
9
10### to run the virtual environemt run "activate" as in the following command
11.\my_virtualenv\Scripts\activate