Answers for "how to install a requirements.txtr"

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
2

python requirements.txt

# to generate the requirements.txt file:
pip install pipreqs	# Install via teminal.
pipreqs path/to/project	# Generate requirements.txt file
# There is now a requirements.txt file in the project folder.
# to install a requirements.txt file:
pip install -r requirements.txt
# please leave a like ;)
Posted by: Guest on February-10-2021

Code answers related to "how to install a requirements.txtr"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language