2

我刚刚为 Mac OS 下载了安装的 python 3.3。我使用了来自 python.org 的标准包

我在 python 3.3 中找不到包安装工具。没有 pip、easy_install、setuptools。看起来像一个引导问题:如何在没有包安装包的情况下安装包安装包?

我错过了一些明显的东西吗?还是我需要采取进一步的步骤才能获得软件包安装程序?

4

1 回答 1

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,请以另一种方式下载脚本并运行其他两个命令。

于 2013-01-16T13:15:43.337 回答