Python 安装失败,路径已更改,可以编码但无法导入

Python installation will not work, path was changed, can code but can't import

我正在使用 windows 8.1 和 python 2.7.9,我想我无法正确获取 python 到 install/import 模块。我查看了 this post,当在 cmd 提示符中输入 set PATH 时,它列出了 ";C:Python27\Scripts\;C:Python27\" 我试过了"Python27" 或其中 "Python27\Scripts" 和 none work.The python 应用程序的位置根据其属性是 "C:\Python27".

当我在 cmd 中输入 python 时,它显示 "python is not recognized as an internal or external command" 根据这个 video. I can use Pyscripter and type code into the python command line and it works. So the real problem is I cannot import modules. I have tried this video, this video and this 视频,这不应该发生。它们都提供了不同的导入模块的方式,但是 none 它们都有效(都在接近视频结尾时进行)。如何导入模块?我知道使用 pip 应该超级简单,但对我来说却行不通。我该怎么办?

对于未来的观众,问题是 C: 之后的路径变量中缺少反斜杠。路径变量已更新以反映这一点。

;C:Python27\Scripts\;C:Python27\

已更改为:

;C:\Python27\Scripts\;C:\Python27\