python如何安装pip

下载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,可以安装库!

 

你可能感兴趣的:(安装与问题解答,python,pip,开发语言)