我下载了 ActivePython-2.7.2.5-win32-x86 并按照文档中的说明安装了软件。但是 pypm 根本不起作用。从文档中,我相信在成功安装 Python 后,我只需要在 IDLE (Python GUI) 中使用此代码:
C:\> pypm install pandas
安装和加载包。但是,我不断收到如下所示的语法错误
ActivePython 2.7.2.5 (ActiveState Software Inc.) based on
Python 2.7.2 (default, Jun 24 2011, 12:21:10) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> C:\> pypm install pyramid
SyntaxError: invalid syntax
当我尝试运行相同的代码时,我也会收到相同的错误消息:
C:\> pypm install pandas
在 Python 交互式 shell 中如下:
ActivePython 2.7.2.5 (ActiveState Software Inc.) based on
Python 2.7.2 (default, Jun 24 2011, 12:21:10) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> C:\> pypm install pyramid
File "<stadin>", line 1
C:\> pypm install pyramid
^
SyntaxError: invalid syntax
我确实尝试打开 Python 包管理器(PyPM)来检查那里是否有任何问题。我在 PyPM 窗口中找到了以下几行:
'pypm' is not recognized as an internal or external command,
operable program or hatch file.
C:\windows\system32>
我真的不知道我哪里做错了,我尝试卸载 ActivePython 2.7.2.5 并重新安装几次,我仍然收到相同的错误消息。
当我只是输入
pypm install pandas
在 Python 交互式 shell 中如下:
ActivePython 2.7.2.5 (ActiveState Software Inc.) based on
Python 2.7.2 (default, Jun 24 2011, 12:21:10) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> pypm install pyramid
File "<stadin>", line 1
pypm install pyramid
^
SyntaxError: invalid syntax
仍然是相同的错误消息。
我尝试卸载 ActivePython 2.7.2.5 并重新安装几次,仍然收到相同的错误消息。我使用的是 Windows 7 操作系统。