我对python很新。我真的在学习过程。我知道这听起来很愚蠢,但任何帮助都会受到赞赏。 我在终端上键入python,我遇到了这个错误:
NameError: name 'python' is not defined
我想安装或卸载软件包。我输入了pip install matplotlib 我收到了这个错误:
SyntaxError: invalid syntax
非常感谢!
答案 0 :(得分:2)
看起来你试图在python解释器中运行python
,而不是命令提示符
$ python
Python 2.7.6 (default, Sep 9 2014, 15:04:36)
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> python
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'python' is not defined
>>> pip install matplotlib
File "<stdin>", line 1
pip install matplotlib
^
SyntaxError: invalid syntax
键入quit()
或Ctrl+D
以退出python解释器,然后您可以执行pip install
等