标签:阿里 load uninstall line 不安装 模块 txt imp 装包
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
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]
标签:阿里 load uninstall line 不安装 模块 txt imp 装包
原文地址:https://www.cnblogs.com/sdlyxyf/p/12229995.html