Tagged Questions
0
votes
0answers
144 views
IPython import error only when running with qtconsole / notebook
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 ...
4
votes
1answer
515 views
ipython: re-importing modules when using %run
I love ipython, but I've discovered a problem with %run: imported modules are not reloaded when %run is called repeatedly.
Suppose file ex1.py contains the lines:
import ex2
ex2.x.append(1)
print ...
1
vote
1answer
389 views
Old code still being executed in ipython after files have been modified
In file1.py:
def foo():
import file2
print "I'm the old file1.py"
file2.bar()
if __name__ == '__main__':
foo()
In file2.py
print "I'm the old file2.py"
def bar():
print "I'm in the old ...
2
votes
1answer
702 views
Unable to load DLL python module in PyCharm. Works fine in IPython
When I use the IPython included with Enthought Python Distribution, I can import the pyvision package just fine. However, when I try to import pyvision inside of PyCharm 1.2.1, I get the following ...
0
votes
0answers
439 views
Matplotlib import error in ipython
When I run ipython with the command
ipython -pylab
I receive the following error:
Leopard libedit detected.
ERROR: matplotlib could NOT be imported! Starting normal IPython.
Python 2.6.1 ...
2
votes
2answers
320 views
Best way to handle reload-ing of objects, not modules
I'm doing a lot of development in IPython where
In[3]: from mystuff import MyObject
and then I make lots of changes in mystuff.py. In order to update the namespace, I have to do
In[4]: ...
8
votes
3answers
2k views
Prevent Python from caching the imported modules
While developing a largeish project (split in several files and folders) in Python with IPython, I run into the trouble of cached imported modules.
The problem is that instructions import module only ...
1
vote
3answers
67 views
How to use methods defined in a python scipt from a console like ipython
I have written a python script with methods in it. Now I want to use methods from that script in ipython. How do I import it for use in ipython?
Cheers