Answers for "how to create pyhton env"

59

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
Posted by: Guest on November-19-2020
9

create a venv

# Create the virtual environment.
python -m venv venv

# Activate the env.
venv\Scripts\activate.bat
Posted by: Guest on June-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language