No package installer with python 3.3?

故事扮演 提交于 2019-12-10 10:47:15

问题


I just downloaded installed python 3.3 for Mac OS. I used the standard package from python.org

I found no package installing tool in python 3.3. No pip, easy_install, setuptools. Looks like a boot strap problem: how can I install a package-installing-package without a package-installing-package?

I'm I missing something obvious? Or do I need to take further steps in order to have a package installer?


回答1:


Distribute supplies an installer script, distribute_setup.py. So, on Unix-y systems with curl, you can use the following commands:

curl -O http://python-distribute.org/distribute_setup.py
python3.3 distribute_setup.py
easy_install pip    # easy_install is part of distribute

If you don't have curl, download the script another way and run the other two commands.



来源:https://stackoverflow.com/questions/14335989/no-package-installer-with-python-3-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!