[Solved] No module named _multiprocessing
I had to use Google App Engine 1.5 on Windows and the windows machine had Python 2.6
While launching the GAE, I got error, No module named _multiprocessing
The solution is very simple. On root of your application create a file called _multiprocessing.py with content "import multiprocessing"
This should fix the problem.
While launching the GAE, I got error, No module named _multiprocessing
The solution is very simple. On root of your application create a file called _multiprocessing.py with content "import multiprocessing"
This should fix the problem.
Comments
Post a Comment
Comments are moderated. No spam please.