转: python如何安装pip和easy_installer工具

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转: python如何安装pip和easy_installer工具相关的知识,希望对你有一定的参考价值。

原文地址: http://blog.chinaunix.net/uid-12014716-id-3859827.html

 

1.在以下地址下载最新的PIP安装文件:http://pypi.python.org/pypi/pip#downloads

2.解压安装

3.下载Windows的easy installer,然后安装:http://pypi.python.org/pypi/setuptools

4.安装setuptools工具

5.命令行工具cd切换到pip的目录,找到setup.py文件,然后输入python setup.py install,运行即可(之所以能运行这步,是因为之前安装的setuptools工具,以后就可以随意安装python的库了,只要找对 setup.py文件的路径,运行上述命令,就可以方便的安装了)

6.把python的安装路径添加到环境变量path中,例如G:\python2.6\Scripts

7.完成!


另:安装完pip和easy_installer工具后,以后再安装python其他库就方便了

例如:
easy_install redis

    or

pip install redis (推荐)




安装easy_install、pip:

http://heipark.iteye.com/blog/1916758

 










以上是关于转: python如何安装pip和easy_installer工具的主要内容,如果未能解决你的问题,请参考以下文章

easy_install与pip 区别

centos 7 安装pip和pip3

转: windows下面安装Python和pip终极教程

python 基础--pip(转)

python pip安装lxml失败(转)

转: CentOS 6.4安装pip,CentOS安装python包管理安装工具pip的方法