下载get-pip.py文件
https://bootstrap.pypa.io/get-pip.py从官网上复制代码到指定路径(新建.py文件),如C:\Users\28413\Desktop\get-pip.py
安装pip
然后win+R,输入cmd,运行命令python C:\Users\28413\Desktop\get-pip.py install,(python后面接上面的路径),如果出现
ERROR Could not find a version that satisfies the requirement install (from versions: none)
那就切换源,改成
python C:\Users\28413\Desktop\get-pip.py install -i http://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com
-i后面也可以是 Simple Index --trusted-host pypi.douban.com
或者Simple Index --trusted-host pypi.tuna.tsinghua.edu.cn
设置默认的镜像源
打开pip的安装文件路径,我的是C:\Users\28413\AppData\Roaming\pip,然后修改pip.ini:
[global] index-url = https://pypi.douban.com/simple trusted-host = pypi.douban.com
使用pip安装python库
在调式控制台中输入pip install numpy,可以安装库!
文章来源:https://www.toymoban.com/news/detail-611034.html
文章来源地址https://www.toymoban.com/news/detail-611034.html
到了这里,关于python如何安装pip的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!