|
PythonPath
How to configure your Python path for using the App3Client
IntroductionAfter trying to get the App3Client to import correctly on my machine I ran into a few problems. All were missing packages or problems with my PythonPath, so here is how I fixed all of this. Mac OS XImportError: No module named yaml:
python /Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/yaml/setup.py install ImportError involving Google's libraries:
export PYTHONPATH=/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine:$PYTHONPATH WindowsImportError: No module named yaml:
cd "C:\Program Files\Google\google_appengine\lib\yaml\ " python setup.py install |
Sign in to add a comment