在配置集群的时候,会遇到用pip安装大量包的情况,下面是用pip批量安装包的方法:
首先,在已配置好的一台机器上,将需要的包导出到requirements.txt
>>>pip freeze > requirements.txt
查看requirements.txt,内容如下
然后,在集群的其他机器上执行
>>>pip install -r requirements.txt
就可以完成批量安装包的工作了。
原文地址:https://www.cnblogs.com/helloTerry1987/p/10988991.html
时间: 2024-11-07 01:50:07