gpt4 book ai didi

python - 如何使用 pip 一次安装多个 python 包

转载 作者:IT老高 更新时间:2023-10-28 12:28:56 28 4
gpt4 key购买 nike

我知道这是一种简单的方法,但我在这里和谷歌上都没有找到它。所以我很好奇是否有办法使用 pip 安装多个包。类似的东西:

pip install progra1 , progra2 ,progra3 ,progra4 . 

或:

pip install (command to read some txt containing the name of the modules) 

最佳答案

要在命令行上安装多个包,只需将它们作为空格分隔的列表传递,例如:

pip install wsgiref boto

对于从文本文件安装,然后,从 pip install --help:

-r FILENAME, --requirement=FILENAME

Install all the packages listed in the given requirements file. This option can be used multiple times.

看看the pip documentation regarding requirements files对于它们的一般布局和语法 - 请注意,如果您想要一个快速示例,您可以使用 pip freeze 根据当前环境/站 pip 包生成一个 - 例如(基于在干净的 virtualenv 中安装了 wsgirefboto):

$ pip freeze
boto==2.3.0
wsgiref==0.1.2

关于python - 如何使用 pip 一次安装多个 python 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9956741/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com