When i am trying to follow the on-line python course to implement demo project,i got problems in importing errors.so,here is what i have done I use Google App Engine to run the server,and my python version is 2.7. here is my server dir
D:\PJ\Udacity\Python\engineapp
my program is edited in main.py in this dir,then,i try to do this in the file:
import os import webapp2 import jinja2
when i build this file,error occurs
Traceback (most recent call last): File "D:\PJ\Udacity\Python\engineapp\main.py", line 18, in import webapp2 ImportError: No module named webapp2
I haved set the python path as someone said before How to add to the pythonpath in windows 7?
PYTHONPATH
D:\Python27;
D:\Program Files (x86)\Google\google_appengine;
D:\Program Files (x86)\Google\google_appengine\lib;
but,after doing this,i still got the import error. If anyone had solved related problem,please tell,i really appreciate you help.