Answers for "installing python requirements"

7

pip install requirements.txt

pip3 install -r requirements.txt
Posted by: Guest on September-22-2020
8

install requirements python

# To generate your requrements file do:
pip freeze > requirements.py

# To install the requrements do: 
pip install -r requirements.py

# If you want to make sure pip is using python3, you can do this:
python3 -m pip freeze > requirements.py
python3 -m pip install -r requirements.py

# Or:
pip3 freeze > requirements.py
pip3 install -r requirements.py
Posted by: Guest on April-06-2022
11

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language