pip常用命令集锦
2020-05-28 本文已影响0人
BL_Fang
下载离线安装包及依赖
以tensorflow为例,下载到当前文件夹中
pip download tensorflow -d .
多个包一起下载时可以将包名并列,如numpy 和scipy一起下载
pip download numpy scipy -d .
相比手动到pypi官网下载更为方便,并且所依赖的包也都会被一并自动下载。
从本地文件夹中安装包
以tensorflow为例
pip install tensorflow --no-index --find-links=.
安装指定版本的包,如下载版本为2.8.7的robotframework
pip install robotframework==2.8.7
pip修改国内镜像
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
批量构建离线环境
1、pip 导出安装包
pip freeze > requirements.txt
2、pip 在线安装
pip install -r requirement.txt
批量下载wheel文件,根据requirements.txt中的下载到当前文件夹下
pip download -r requirements.txt -d .
下载requirements.txt中的包,然后在另一台机子上,使用
pip install --no-index --find-links=. -r requirements.txt