Easy_install问题

时间:2014-11-06 01:44:54

标签: python macos easy-install

尝试安装easy_install(IRONIC)并且不想与我合作。 我在终端使用python2.7

运行以下命令
curl https://bootstrap.pypa.io/ez_setup.py -o - | python
returns me -->
-bash: https://bootstrap.pypa.io/ez_setup.py: No such file or directory

这是一个简单的修复吗?

1 个答案:

答案 0 :(得分:0)

这应该有效:

curl https://bootstrap.pypa.io/ez_setup.py -s | python

除非重定向,否则cURL会将收到的正文输出到STDOUT,因此您不必传递它-o -(根据文档,它实际上不应该做任何事情)。您应该传递-s以禁止进度表和任何错误。然后将其直接导入python。如果没有其他参数,python将确定STDIN作为要执行的脚本的来源。