Windows python3 安装easy_install

主要参考这个帖子

http://www.khattam.info/howto-install-easy_install-and-pip-in-python-3-windows-2011-09-27.html

我是用的是win7 32位,python的版本为3.3.0

I discovered distribute, a fork of setuptools, which provides easy_install. I downloaded source from Python Package page for distribute and extracted it. In the elevated command prompt (cmd->Run as Administrator), I changed to extracted directory and then ran distribute_setup.py. Then, easy_install was successfully installed in Python_Directory\Scripts. Then, I could install pip by changing directory to Scripts and running the following:

从这个网址下载easy_intall Python Package page for distribute 之后解压之。

用管理员的方式运行cmd,转到解压的目录,之后输入 distribute_setup.py

他会自动运行,并在 python目录\Script的目录下生成easy_install.exe,我这里还生成了easy_intall-3.3.exe

之后要装模块就很简单了,下载egg文件,将egg文件拖到easy_intall-3.3.exe之上就可以安装了。

原文地址:https://www.cnblogs.com/cyttina/p/3038112.html