python中pip的安装
1、下载路径如下
https://pypi.python.org/simple/ 在其中查找到pip的安装包:然后找到路径 https://pypi.python.org/simple/pip/
2、进行安装
[root@python pip-8.1.0]# python setup.py install
安装完成之后可以在python的安装路径中找到pip可执行文件,如下:
[root@python bin]# pwd /usr/local/python/bin [root@python bin]# ls -l pip* -rwxr-xr-x 1 root root 281 Mar 20 15:26 pip -rwxr-xr-x 1 root root 283 Mar 20 15:26 pip2 -rwxr-xr-x 1 root root 287 Mar 20 15:26 pip2.7
3、做成超链接
[root@python bin]# cd /usr/bin/ [root@python bin]# ln -s /usr/local/python/bin/pippip安装完成。
for linux and python