一、导出当前python版本安装的包清单
C:\Windows\System32>pip freeze > requirements.txt
生成完的requirements.txt在C:\Windows\System32>路径下,里面就是需要安装的清单;
二、根据包清单,下载离线包
C:\Windows\System32>pip download -d ~/packagesdir -r requirements.txt
C:\Windows\System32>pip download -d ~/packagesdir <packagename>
packagesdir 路径:
python3.7.x,packagesdir 放在根目录下
python3.10.x,在C:\Windows\System32\~文件夹下面
三、安装
1、将packagesdir、requirements.txt放到同一个目录下
2、在这个目录下,地址栏输入cmd,回车,打开命令窗口
?3、开始进行安装
D:\Software>pip install --no-index --ignore-installed --find-links=packagesdir -r requirements.txt
D:\Software>pip install --no-index --ignore-installed --find-links=packagesdir
?感谢内网安装python第三方包 - ryxiong728 - 博客园的分享,
|