📜  python install required packages - Python 代码示例

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

代码示例1
# This is assuming there is a requirements.txt and pip is funtional.
# Open up a terminal window and navigate to the directory the requirements file is stored in.

# For windows:
py -3 -m pip install -r requirements.txt
# For linux & Mac:
python -m pip install -r requirements.txt