venv documentation code example
Example 1: virtual env create python
#------FOR LINUX/MAC---------#
#installing venv
sudo apt-get install python3.6-venv
#creating virtual env
python3 -m venv env
#activating virtual env
source env/bin/activate
#-------FOR WINDOWS----------#
#installing venv
py -m pip install --user virtualenv
#creating virtual env
py -m venv env
#activating virtual env
.\env\Scripts\activate
Example 2: creating venv python3
# CREATE FOLDER FOR A PROJECT
mkdir project_folder
cd project_folder
# CREATE VIRTUAL ENVIRONMENT
python3.7 -m venv myvenv
# or alternativelly
virtualenv myvenv --python=python3.7
# ACTIVATE VIRTUAL ENVIRONMENT
source myvenv/bin/activate
Example 3: python create virtualenv
pip install virtualenv # install first
cd projectfolder # go to project folder
python -m venv ./venv # Create a virtual environment named venv
Activate.ps1 # (powershell) start the file to start the environment
activate.bat # (cmd) start the file to start the environment
# if it worked you'll see a (venv) in front of your cursor path
Example 4: python venv
python3 -m venv /path/to/new/virtual/environment
Example 5: python venv
source <folder-env>/bin/activate
Example 6: activate venv in python
(tutorial-env) $ pip list
novas (3.1.1.3)
numpy (1.9.2)
pip (7.0.3)
requests (2.7.0)
setuptools (16.0)