我刚刚下载了适用于Mac OS的已安装的python 3.3。我使用了standard package from python.org
我在python 3.3中找不到包安装工具。没有点子,easy_install,setuptools。 看起来像一个引导带问题:如何在没有package-installing-package的情况下安装package-installing-package?
我错过了一些明显的东西?或者我是否需要采取进一步措施才能拥有包安装程序?
答案 0 :(得分:7)
Distribute提供了一个安装程序脚本distribute_setup.py
。因此,在具有curl的Unix-y系统上,您可以使用以下命令:
curl -O http://python-distribute.org/distribute_setup.py
python3.3 distribute_setup.py
easy_install pip # easy_install is part of distribute
如果您没有curl,请以其他方式下载脚本并运行其他两个命令。