Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am trying to use FreeCAD under IPython and it seems to work only under ipython console but not when running with ipython qtconsole (0.13 and 0.14dev). The error comes when importing FreeCAD:

"While initializing FreeCAD the following exception occurred: '__import__ not found' Please contact the application's support team for more information."

The same code / FreeCAD version imports correcty under ipython 0.12 (both under console and qt)

thanks

Code:

import sys;
sys.path.extend(['/usr/local/lib']);
import FreeCAD

OS: 3.5.0-23 Ubuntu x86_64

Ipython: IPython 0.14.dev (from git)
FreeCAD: FreeCAD 0.13, Libs: 0.13R1804 (Git)

share|improve this question
where is FreeCAD installed? – minrk Feb 15 at 20:51
and what is your PYTHONPATH environment variable, if defined? – minrk Feb 15 at 20:52
Can you import other modules (not including sys, that's built in - try something like tokenize), before and after you get that error? – Thomas K Feb 16 at 0:18
FreeCAD is build into /usr/local/bin and libraries in /usr/local/lib. PYTHONPATH is not set, but i don't think it is a path problem since it runs ok when importing FreeCAD under ipython. The problem is when running under "ipython qtconsole" or "ipython notebook --pylab". – user2075628 Feb 16 at 0:53
Since FreeCAD is initialized from a QT application, it should have some conflict with ipython's QT initialization? (under 0.12 with same code, i can proceed with FreeCADGui and working eventloop with no problem....) – user2075628 Feb 16 at 0:58
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.