Sublime text 2无法构建和运行系统Python

时间:2015-03-03 08:47:17

标签: python

这是我第一次尝试链接python和sublime文本2,我的代码是正确的并且可以通过python控制台轻松运行但是当我尝试通过sublime文本运行它时我收到错误

[Error 2] The system cannot find the file specified
[cmd:  [u'python', u'-u', u'C:\\Users\\Ben\\Desktop\\Api project\\api.py']]
[dir:  C:\Users\Ben\Desktop\Api project]
[path: C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\NVIDIA      Corporation\PhysX\Common;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\]
[Finished]

我相信我没有正确设置python,但任何建议都会非常感激。代码如下

import urllib2
import json

locu_api = 'myapikey'

url = 'https://api.locu.com/v1_0/venue/search/?locality=New%20York&category=restaurant&api_key=myapikey'
json_obj = urllib2.urlopen(url) #Json data (displays the pulled url data)

data = json.load(json_obj)

print data

1 个答案:

答案 0 :(得分:0)

在对它进行哈希处理之后,似乎我没有将python目录添加到我的系统路径的环境中,正在解决它现在按预期工作。 控制面板>系统和安全性>系统>高级系统设置>在高级选项卡中转到环境变量。在“系统变量”区域的环境变量中向下滚动,直到找到“路径”。选择它,然后按编辑。 添加所需的路径C:\ Python27