我正在使用Pythonxy(已卸载所有旧的Python实例),并且根据文档页面 https://code.google.com/p/pythonxy/wiki/StandardPlugins,它将pip作为标准插件
但是当我使用 pip 命令时,它会失败。任何人都可以找出我所犯的错误吗?
P.S. Pip在我搬到Pythonxy之前曾经在Python下工作得很好。
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Imported NumPy 1.8.0, SciPy 0.13.3, Matplotlib 1.3.1
+ guidata 1.6.1, guiqwt 2.3.1
Type "scientific" for more details.
>>> pip freeze
File "<stdin>", line 1
pip freeze
^
SyntaxError: invalid syntax
>>> pip install numpy
File "<stdin>", line 1
pip install numpy
^
SyntaxError: invalid syntax
>>>
PIP
从来没有那样工作过。
使用命令行,即 BASH
而不是Python Interpreter
.
当然
pip install numpy
是无效的 Python 语句。 您可以使用 shell 中提到的命令。