📌  相关文章
📜  python requirements.txt - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:18.730000             🧑  作者: Mango

代码示例6
# In a requirements.txt file, you can specify various names of Python packages
# you want to install, and you can install all the packages in that at one time.
# Example: 
# Requirements.txt file:
django
djangorestframework
flask
# If you run pip install -r requirements.txt, this will install (in this case)
# django, djangorestframework and flask.