python pip的使用
1.导出安装包 pip freeze > requirements.txt
2.安装requirements.txt文件中指定的扩展库:pip install -r requirement.txt 导出wheel文件,本地文件可能没有缓存,需要重新下载,使用命令
3.指定下载源安装模块:pip install *** -i https://pypi.doubanio.com/simple
清华源:https://pypi.tuna.tsinghua.edu.cn/simple ,阿里云:http://mirrors.aliyun.com/pypi/simple
5.列出当前已安装的所有模块:pip list
6.列出已安装模块的信息:pip show ***
7.在线安装SomePackage模块的指定版本:pip install SomePackage[==version]
8.通过whl文件离线安装扩展库:pip install SomePackage.whl
9.依次(在线)安装package1、package2等扩展模块:pip install package1 package2 ...
10.升级SomePackage模块:pip install --upgrade SomePackage
11.卸载SomePackage模块的指定版本:pip uninstall SomePackage[==version]
相关推荐
Kwong 2020-05-14
llwang0 2020-05-12
sherry颖 2020-05-12
iFlyAI 2020-09-14
xinhao 2020-07-20
taiyangshenniao 2020-06-25
pythonxuexi 2020-06-25
zhaobig 2020-06-25
qingqingpiaoguo 2020-06-22
yjsflxiang 2020-06-14
txlCandy 2020-06-09
bizercsdn 2020-06-08
JakobHu 2020-05-27
davidliu00 2020-05-26