Install easy_install: http://peak.telecommunity.com/DevCenter/EasyInstall
Then issue the command "easy_install pycrypto"
>
> 2) Trying to use it on http://shell.appspot.com, I get errors
>
> from Crypto.Cipher import DES
> obj=DES.new('abcdefgh', DES.MODE_ECB)
>
> -->all sorts of traceback errors mentioning pickling
As I said in your other thread, shell.appspot.com uses pickle to
persist data between requests. This is not an issue with usage inside
your app.
-Nick Johnson