SublimeText2編譯python出錯的解決方法(Thesystemcannotfindthefile
來源:懂視網(wǎng)
責編:小采
時間:2020-11-27 14:39:03
SublimeText2編譯python出錯的解決方法(Thesystemcannotfindthefile
SublimeText2編譯python出錯的解決方法(Thesystemcannotfindthefile:[Error 2] The system cannot find the file specified 解決方法:1.環(huán)境變量path添加:C:\Python32\Tools\Scripts;D:\Python32;D:\Program Files\Sublime Text2;2.Python.sublime-build內容修改原內容: 代碼如
導讀SublimeText2編譯python出錯的解決方法(Thesystemcannotfindthefile:[Error 2] The system cannot find the file specified 解決方法:1.環(huán)境變量path添加:C:\Python32\Tools\Scripts;D:\Python32;D:\Program Files\Sublime Text2;2.Python.sublime-build內容修改原內容: 代碼如

[Error 2] The system cannot find the file specified
解決方法:
1.環(huán)境變量path添加:
C:\Python32\Tools\Scripts;D:\Python32;D:\Program Files\Sublime Text2;
2.Python.sublime-build內容修改
原內容:
代碼如下:
{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
修改為(路徑為安裝文件夾):
代碼如下:
{
"cmd": ["C:/Python26/python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
SublimeText2編譯python出錯的解決方法(Thesystemcannotfindthefile
SublimeText2編譯python出錯的解決方法(Thesystemcannotfindthefile:[Error 2] The system cannot find the file specified 解決方法:1.環(huán)境變量path添加:C:\Python32\Tools\Scripts;D:\Python32;D:\Program Files\Sublime Text2;2.Python.sublime-build內容修改原內容: 代碼如