如何修复此Python语法错误?

时间:2017-09-05 06:15:10

标签: python

python : The term 'python' is not recognized as the name of a cmdlet, function,
script file, or operable program. Check the spelling of the name, or if a path was
included, verify that the path is correct and try again.
At line:1 char:1
+ python -m pip install pylint
+ ~~~~~~
    + CategoryInfo          : ObjectNotFound: (python:String) [], CommandNotFoundExc
   eption
    + FullyQualifiedErrorId : CommandNotFoundException

我不知道这是什么。除了愚蠢的错误之外,谁能告诉我这是什么?

1 个答案:

答案 0 :(得分:0)

我认为问题是(假设你已经安装了python和pip)你的路径环境变量中没有包含python。

在Windows中: 1)打开系统属性(在开始菜单中键入它,或使用键盘快捷键Win + Pause) 2)切换到“高级”选项卡 3)单击环境变量 4)在System variables部分中选择PATH 5)单击“编辑” 6)将python的路径添加到列表的末尾(路径以分号分隔) 6 *)如果您不确定python的路径 - 单击Browse,然后导航到'C:\ Program Files \',然后选择您要添加的python安装的文件夹;文件夹名称将采用'Python ##'格式

对于隔离环境,您可能指的是虚拟环境,这会阻止您进行全局分配或更改。这是一个网页,向您展示如何在Windows中执行此操作,同样,您需要更改“Python ##”以使您的python安装路径:

http://timmyreilly.azurewebsites.net/setup-a-virtualenv-for-python-3-on-windows/