Python中的pip常用方法:换源、安装、升级、查询、卸载

Python中的pip常用方法:换源、安装、升级、查询、卸载,第1张

概述目录换源临时使用设为默认使用国内镜像网址安装在线安装本地安装升级升级pip升级包查询卸载换源临时使用格式:pipinstall-i镜像网址包名清华源:pipinstall -ihttps://pypi.tuna.tsinghua.edu.cn/simple包名使用清华源临时安装numpy:pipinstall -ihtt

目录

换源

临时使用

设为默认使用

国内镜像网址

安装

在线安装

本地安装

升级

升级pip

升级包

查询

卸载


@H_403_29@换源临时使用

格式:pip install -i 镜像网址 包名

清华源: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 包名

使用清华源临时安装numpy:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy

设为默认使用

当pip版本>=10.0.0直接输入指令:

格式:pip config set global.index-url 镜像网址
清华源:pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

当pip版本 < 10 .0.0:

第一步,升级pip:

如果网络差时,升级pip使用:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U如果网络好时,升级pip使用:pip install pip -U

第二步,输入设置指令,完成更换:

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

清华源的其它问题,清华源使用帮助:https://mirrors.tuna.tsinghua.edu.cn/help/pypi

国内镜像网址清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/阿里云 http://mirrors.aliyun.com/pypi/simple/豆瓣(douban) http://pypi.douban.com/simple/北京外国语大学 http://pypi.mirrors.ustc.edu.cn/simple/

参考链接:https://developer.aliyun.com/article/652884

 

 

安装在线安装如果未安装或需要升级到最新:pip install 包名如果numpy需要安装/升级到指定的1.19.3版本: pip install numpy == 1.19.3通过whl文件安装:在下述找到whl文件,输入命令:pip intall whl下载网址/文件.whl

whl下载网址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted

通过whl安装numpy:pip intall https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted/numpy‑1.16.6+mkl‑cp27‑cp27m‑win_amd64.whl

本地安装在“国内镜像网址”、pypi、或上述的whl下载网址,下载文件whl文件假如whl文件保存在:E:\pythonWhl 的路径下,CMD路径到E:\pythonWhl输入指令:pip install xxxxx.whl

 

 

升级升级pip如果网络差时,升级pip使用:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U如果网络好时,升级pip使用:pip install pip -U升级包如果未安装或需要升级到最新:pip install 包名如果未安装或需要升级到最新:pip install --upgrade 包名如果numpy需要安装/升级到指定的1.19.3版本: pip install numpy == 1.19.3

 

 

查询

查询所有包,输入命令:pip List

查看某个包的具体信息:pip show 包名

 

 

卸载

指令:pip uninstall 包名

指定卸载某版本的包:pip uninstall 包名==版本号

总结

以上是内存溢出为你收集整理的Python中的pip常用方法:换源、安装、升级、查询、卸载全部内容,希望文章能够帮你解决Python中的pip常用方法:换源、安装、升级、查询、卸载所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1186688.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存