AppEngine project error

I am trying to run the default program that is generated when the appEngine project is created and the logs are giving me this error.

2014-09-22 21:19:08 Running command: "['C:\\Python34\\pythonw.exe', 'C:\\Program Files (x86)\\Google\\google_appengine\\dev_appserver.py', '--skip_sdk_update_check=yes', '--port=10080', '--admin_port=8002', 'C:\\Users\\eriel\\Documents\\web\\southawnings']"
Traceback (most recent call last):
  File "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py", line 82, in <module>
    _run_file(__file__, globals())
  File "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py", line 78, in _run_file
    execfile(_PATHS.script_file(script_name), globals_)
NameError: name 'execfile' is not defined
2014-09-22 21:19:08 (Process exited with code 1)

      

I am using Windows 8.0 and the latest appEngine update

+3


source to share


1 answer


If you have Python 2.7 installed, try opening the Google App Engine launcher. Then Edit -> Preferences and check if the python path is correct. If you installed Python in C: /, it should look something like this:



C:\Python27\pythonw.exe

      

+4


source







All Articles