I’m running GAE SDK on a Windows Vista laptop. It keeps reminding me to install the SSL module. I’ve been having great difficulty on how to do that.
I’ve downloaded the SSL module.
I’ve done ‘python setup.py install’ in cmd, but it just says “python is not recognized as an internal…”
I’ve added C:\Python2.5.2 to my PATH.
Still the same message “python is not recognized as an internal or external command…”
What else should I do?
On the command line, run
set pathand confirm that c:\Python2.5.2 is in your path?Or, just run
c:\Python2.5.2\python setup.py installAlso by the way I would recommend that you use 2.5.4 for app engine development, as that is the version google use in production.
The following question also has some info which might be useful: How to install Python ssl module on Windows?