[newbie] how to make program suggest to install missing modules

sohcahtoa82 at gmail.com.remove-cdt-this sohcahtoa82 at gmail.com.remove-cdt-this
Tue Dec 9 11:32:01 EST 2014


  To: Jean-Michel Pichavant
On Monday, December 8, 2014 10:46:47 AM UTC-8, Jean-Michel Pichavant wrote:
> ----- Original Message -----
> > From: sohcahtoa82 at gmail.com
> > try:
> >     import someModule
> > except ImportError:
> >     print "Module is missing"
> >     # handle it!
> > 
> > Just make sure to attempt to import it again after making the call to
> > pip to install it.
> 
> Note that ImportError may be raised for other reasons than a missing module.
> 
> Check https://docs.python.org/2/library/imp.html and the imp.find_module, it 
could be a safer way to check for a missing module.
> 
> JM
> 
> 
> -- IMPORTANT NOTICE: 
> 
> The contents of this email and any attachments are confidential and may also 
be privileged. If you are not the intended recipient, please notify the sender 
immediately and do not disclose the contents to any other person, use it for 
any purpose, or 
store or copy the information in any medium. Thank you.

Good point.

Of course, imp.find_module ALSO throws ImportError if the module can't be 
found, but at least in that case, you'd know the exact cause.

--- SoupGate-Win32 v1.05
 * Origin: <SpaceSST.BBS.Fidonet<>NNTP.gateway. at .piz.noip.me> (1:249/999)
--- Synchronet 3.15b-Win32 NewsLink 1.92
SpaceSST BBS Usenet <> Fidonet Gateway



More information about the Python-list mailing list