I get the following error:-
File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 239, in Handle
handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 298, in _LoadHandler
handler, path, err = LoadObject(self._handler)
File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/runtime/wsgi.py", line 84, in LoadObject
obj = __import__(path[0])
File "/base/data/home/apps/s~XXXXXXXXX/1-2-5-test.371816147108304389/finish.py", line 8, in <module>
import jsonpickle
ImportError: No module named jsonpickle
I have jsonpickle (version 0.6.1) in the root directory. I use a couple of other 3rd party libraries in python without any problem in importing. Why is this only happening for jsonpickle? The weird thing is that this works well in local server and I'm getting the error only on the remote server.
I tried the solutions from google app engine jsonpickle question. None of them seem to work. Can anyone confirm my problem on GAE if possible?