Answers for "python install requirements.txt in venv"

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
10

install requirements.txt in pip command

note: yor should be on the same dir as requirements.txt file 

pip install -r requirements.txt
Posted by: Guest on May-19-2020
0

how to use virtual environment python

python3 -m pip install --user virtualenv
Posted by: Guest on April-10-2020

Code answers related to "python install requirements.txt in venv"

Python Answers by Framework

Browse Popular Code Answers by Language