python使用pip离线打包
Posted 摩羯男
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用pip离线打包相关的知识,希望对你有一定的参考价值。
新公司是内网环境,无法使用pip安装第三方资源库,在网上搜下,可以直接使用pip打包本机所安装的第三方资源库,打包成whl文件
一 进入cmd命令行
1 打包单个模块
pip download pytest -d /tmp
2 打包本机所有的包
pip freeze >requirements.txt pip download -r requirements.txt -d /tmp 或者 pip install --download /tmp/packages -r requirements.txt
在使用 pip freeze >requirements.txt 可能会报错
根据提示的路径,删除或则先移除 这个文件就行了,然后在执行 上边的命令 ,会在当前路径下生成txt文件,打开后,可以根据需要删除一些
执行了
pip download -r requirements.txt -d /tmp 之后 就是下图这样
打开文件夹 看到已经打包的文件 有tar的 有whl的 直接安装就行了
二 安装
1 单个安装
pip install beautifulsoup4-4.8.2-py3-none-any.whl #或者: pip install datafaker-0.7.2.tar.gz tar -xvf datafaker-0.7.2.tar.gz cd datafaker-0.7.2.tar.gz python setup.py install
2 批量安装已经导出的包
将temp文件夹和requirements.txt拷贝到内网环境下的机器,temp文件夹放在Python3.6的根文件夹下,requirements.txt放在python3.6\\scirpts,pip.exe也在该文件夹下。然后执行下边的命令
pip install --no-index --find-index=d:\\python3.6\\temp -r requirements.txt
3 批量安装requirements.txt 中的资源库,非离线状态下
pip install -r requirements.txt
以上是关于python使用pip离线打包的主要内容,如果未能解决你的问题,请参考以下文章