On Mon, Oct 11, 2010 at 8:43 AM, Sunil Saggar <sunil.sag...@gmail.com> wrote:
> I was trying to make exe from python program and found the following errors
>
> The following modules appear to be missing
> ['email.FeedParser', 'email.Generator', 'email.Iterators', 'email.Message',
> 'email.Utils', 'simplejson', 'socks']
>
> I am using Python  2.6

simplejson got merged into the standard library in Python 2.6. In
libcloud, I wrote this:

  try: import json
  except ImportError, excp: import simplejson as json

Is your app looking for simplejson? (I didn't look in to the other modules.)

-- 
Jed Smith
j...@jedsmith.org
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to