您好我是Python的新手,我正在努力开始。
问题: 我有Sublime Text 2,我在运行一些简单的代码时遇到了问题。
我有: Python安装@ C:\ Program Files \ Python \ Python 278
使用代码@ C:\ Users \ Computer \ Desktop \ Learning Python
的工作文件夹代码是:ex1.py
我已将Python添加到我的环境变量(用户变量和系统变量)。
我的sublime已设置为Python。
这是我的代码:
打印“哟”
当我尝试构建时,我得到:
[Error 2] The system cannot find the file specified
[cmd: [u'g++', u'C:\\Users\\Computer\\Desktop\\Learning Python\\ex1.py', u'-o', u'C:\\Users\\Computer\\Desktop\\Learning Python/ex1']]
[dir: C:\Users\Computer\Desktop\Learning Python]
[path: ...;C:\Program Files\Python\Python 278]
[Finished]
我可以从powershell和cmd运行python。 http://gyazo.com/cfa64a39730b3aefce6daf530a099453
我必须再次强调,在我的cmd中键入python将启动python解释器
我甚至改变了Python.sublime-build
“cmd”:[“C:\ Program Files \ Python \ Python 278 \ python.exe”,“ - u”,“$ file”],
“file_regex”:“^ [] 文件\”(... ?)\“,行([0-9] *)”,
“selector”:“source.python”
和
“cmd”:[“C:\ Program Files \ Python \ Python 278 \ python.exe”,“ - u”,“$ file”],
“file_regex”:“^ [] 文件\”(... ?)\“,行([0-9] *)”,
“selector”:“source.python”
原来是
“cmd”:[“python”,“ - u”,“$ file”],
“file_regex”:“^ [] 文件\”(... ?)\“,行([0-9] *)”,
“selector”:“source.python”
请帮忙。我花了7个多小时来解决这个问题,我确信我错过了一些愚蠢的事情。
非常感谢你的时间和帮助!
答案 0 :(得分:0)
好吧,我是个愚蠢的人。
我看到了这个: http://gyazo.com/6b3d484b8d00831b631bacc73fe6825a
并认为我将构建系统设置为Python。 都能跟得上!
请工具 - >构建系统 - > Python