1

我确定我遗漏了一些明显的东西,所以我提前道歉。情况如下:

我正在尝试安装一些 python 模块来处理 excel 文档,但是,我什至无法让 easy_install 命令工作。python 和 python\scripts 都在我的系统路径中,并且我已经多次运行设置工具脚本。我检查了脚本文件夹,它包含 easy_install 脚本和 .exe 文件。但是,当我尝试从命令行运行它时,我收到一个回溯错误:

>>> easy_install
Traceback (most recent call last):
  File "", line 1, in 
    easy_install
NameError: name 'easy_install' is not defined`

这是一台 64 位 Windows 8 机器。

我在这里想念什么?

4

1 回答 1

1

easy_install 是一个 shell 命令。

要在 Windows 上使用 easy_install,请执行以下步骤:

window + r并输入,cmd然后按Enter

可能 easy_install.exe 不在您的系统路径中,因此请输入 easy_install 的完整路径:

C:\Python27\Scripts\easy_install.exe name_of_the_package然后按 Enter。

我建议你阅读这个: http: //pythonhosted.org/distribute/easy_install.html#windows-notes

于 2013-09-26T16:25:45.053 回答