欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

SublimeText 2編譯python出錯的解決方法(The system cannot find the file specified)

 更新時間:2013年11月27日 16:40:23   作者:  
這篇文章主要介紹了SublimeText 2編譯python報The system cannot find the file specified錯誤的解決方法,大家參考使用吧

[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內(nèi)容修改
原內(nèi)容:

復(fù)制代碼 代碼如下:

{
     "cmd": ["python", "-u", "$file"],
     "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
     "selector": "source.python"
 }

修改為(路徑為安裝文件夾):

復(fù)制代碼 代碼如下:

{
 "cmd": ["C:/Python26/python.exe", "-u", "$file"],
 "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
 "selector": "source.python"
}

相關(guān)文章

最新評論