Missing modules for python

Jed Smith jed at jedsmith.org
Mon Oct 11 10:32:44 EDT 2010


On Mon, Oct 11, 2010 at 8:43 AM, Sunil Saggar <sunil.saggar at 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
jed at jedsmith.org



More information about the Python-list mailing list