python 3.3没有软件包安装程序吗? [英] No package installer with python 3.3?

查看:161
本文介绍了python 3.3没有软件包安装程序吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚下载了适用于Mac OS的已安装python 3.3.我使用了python.org中的标准包

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

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

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?

推荐答案

分发提供了一个安装程序脚本distribute_setup.py.因此,在具有curl的Unix-y系统上,可以使用以下命令:

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

如果您没有curl,请以另一种方式下载脚本并运行其他两个命令.

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

这篇关于python 3.3没有软件包安装程序吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆