Answers for "build a python application with requirements.txt"

52

how to run requirements.txt in python

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

create requirements.txt python

pip3 freeze > requirements.txt  # Python3
pip freeze > requirements.txt  # Python2
Posted by: Guest on September-13-2021

Code answers related to "build a python application with requirements.txt"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language