Python安装PIP
Posted muxuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python安装PIP相关的知识,希望对你有一定的参考价值。
安装Easy_Install
安装Easy_Install,然后安装PIP。
sudo apt-get install easy_install
sudo easy_install pip
当然也可以用python安装:
curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"
sudo python3 get-pip.py
查看版本
pip3 -V
当然默认的pip还是python2的,所以,你懂了怎么改了,不懂上篇文章里面有方法。
修改pip源
国内有很多源:
(1)阿里云 http://mirrors.aliyun.com/pypi/simple/
(2)豆瓣http://pypi.douban.com/simple/
(3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
(4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
(5)华中科技大学http://pypi.hustunique.com/
笔者用的清华的:
mkdir -p ~/.pip
cd ~./pip
vim pip.conf
把下面的内容写进去:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple/
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn
以上是关于Python安装PIP的主要内容,如果未能解决你的问题,请参考以下文章