python下pip安装模块包
程序员文章站
2022-05-21 11:58:53
pip install 模块名注意:一直提示read time out,需要切换国内镜像列几个国内的镜像源:阿里云 速度最快 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/豆瓣 http://pypi.douban.com/simple/Python官方 https://pypi.python.org/simple/v2ex http://pypi.v2ex.com/si...
pip install 模块名
注意:一直提示read time out,需要切换国内镜像
列几个国内的镜像源:
阿里云 速度最快 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣 http://pypi.douban.com/simple/
Python官方 https://pypi.python.org/simple/
v2ex http://pypi.v2ex.com/simple/
中国科学院 http://pypi.mirrors.opencas.cn/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
方法一:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn 模块名
Eg:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn requests==2.24.0
后面的‘==2.24.0’是指定安装版本号
“–trusted-host pypi.tuna.tsinghua.edu.cn”是SSL信任证书
方法二:
pip install -i http://mirrors.aliyun.com/pypi/simple/ 模块
扩展pip list
查看已安装的模块包pip list --outdate
查看哪些包需要更新pip uninstall m
m为模块名
本文地址:https://blog.csdn.net/firewater23/article/details/107164287
推荐阅读
-
python在Windows下安装setuptools(easy_install工具)步骤详解
-
Mac下获取AppStore安装包文件路径
-
python学习之第三方包安装方法(两种方法)
-
详解Python3中setuptools、Pip安装教程
-
Python 安装第三方库 pip install 安装慢安装不上的解决办法
-
各个系统下的Python解释器相关安装方法
-
Python模块包中__init__.py文件功能分析
-
python在Windows下安装setuptools(easy_install工具)步骤详解
-
学会了 python 的pip方法安装第三方库
-
python学习之第三方包安装方法(两种方法)