主要參考這個帖子
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之上就可以安裝了。