python pip离线安装某个包
python
编程技术
发布日期
2023-07-12
更新日期
2023-07-12
阅读次数 131
文章字数 388
使用pip download 可以下载某个包和它依赖的包,一般指定一个空文件夹,然后把依赖全部下载到该空文件夹里
pip download -i 镜像网址 包名
例子:
pip download pymysql -d "D:pipDownloadTest"
得到的依赖包,一般都是.whl结尾的文件,使用 pip install <包名> ,这里的包名就是文件名的完整路径,可以先cd到该目录,直接输入文件名即可
pip install PyMySQL-0.9.3-py2.py3-none-any.whl
批量迁移(在线):
pip freeze >dependency.txt
pip install -r dependency.txt
批量迁移离线:
pip freeze >dependency.txt
pip download -r dependency.txt -d ./mylibs/
pip install --no-index --find-links=./mylibs/
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-437.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
python
发表评论
相关推荐