0
votes
0answers
23 views

Iphython Viewer crash when I view some model

i don't know why but when I'm showing some model on ipython, the viewer crash and send to me an error like XgeModule whas shut down. Why? This is the code: def CIRCLE(r): dom = INTERVALS(2*PI)(50) ...
0
votes
1answer
35 views

integrating orbital trajectories 2

The original second order ODEs are x'' - 2 * omega * y' - omega ** 2 * x = - mue * (x + pi2 * r12) / np.sqrt((x + pi2 * r12) ** 2 + y ** 2) ** 3 - mum * (x - pi1 * r12) / np.sqrt((x - pi1 * r12) ** 2 ...
0
votes
1answer
96 views

Ipython auto-complete in Enthought Python Distribution

I have installed the Enthought Python Distribution(academic license) on my 64-bit Windows machine. Since the I am using the academic license, it is the full EPD package(professional version) that got ...
-1
votes
1answer
73 views

Image recognition and GUI scripting library for IPython? [closed]

I would like to create a Python script (I develop in iPython Notebook) which clicks around in a GUI according to an algorithm that I create, and then takes a screen shot before moving onto the next ...
0
votes
1answer
65 views

How do you write unit tests for python applications that embed IPython Interactive Shell

I have a long running simulation that I need to stop at a given time in the simulation and retrieve and observe some information and then allow the simulation to continue. I've recently started using ...
4
votes
1answer
202 views

running python on vim

Over on askubuntu.com I was told how to run python on Vim. I am testing the set up which works with the code 1st or 2nd code python code at using python to solve a non linear equation. The only ...
1
vote
2answers
269 views

IPython Notebook locale error

After installing the latest Mac OSX 64-bit Anaconda Python distribution, I keep getting a ValueError when trying to start the IPython Notebook. Starting ipython works fine: 3-millerc-~:ipython ...
0
votes
2answers
216 views

Plot an IPython Notebook figure inline with fig.show()?

I'm calling the inline mode for IPython Notebook using; %pylab inline And the following code plots a figure immediately at the cell; fig = plt.figure() axes = fig.add_axes([0, 0, 1, 1]) However ...
0
votes
1answer
60 views

How do I embed an IPython Interpreter into an application running in an IPython Qt Console

There are a few topics on this, but none with a satisfactory answer. I have a python application running in an IPython qt console http://ipython.org/ipython-doc/dev/interactive/qtconsole.html When ...
1
vote
0answers
55 views

iPython (or Numpy) Malloc Error

I have Mac OS X 10.6.8 and Python 2.7 I recently updated a number of Python packages, including NumPy, SciPy, and iPython. After doing so, I discovered that if I tried to open the iPython HTML ...
0
votes
1answer
675 views

IPython notebook doesn't work

I tried to run IPython notebook. I entered following in the commandline: ipython notebook I get the following error (stack trace) > Traceback (most recent call last): File > ...
4
votes
1answer
194 views

How to integrate a Ipython console in a PyQT application

I am developing PyQt software for my lab. In this software, I am loading different kind of RAW and analyzed data from a mySQL database (usually in arrays). I would like to integrate an Iython console ...
1
vote
2answers
126 views

Running from shell and iPython

Not sure how to go about an issue I have. I execute my code in through command line in format: python program.py arg1 arg2 Which is fine in most cases, but I just got iPython and I want to launch ...
0
votes
1answer
83 views

Access to class members within ipdb

Maybe this question will look simple but I'm trying to look at some member variables from within ipdb and I cannot see how. Example: class MyClass( object ): def __init__( self, p ): ...
1
vote
4answers
494 views

Decide which python version to use for pip and easy_install

I have two python versions on my server namely 2.4 and 2.7. It is running RHEL 5.8. I already have pip and easy_install installed on my server. When I try to install ipython using easy_install or ...
1
vote
1answer
604 views

Python name space issues with ipython parallel

I'm starting to experiment with the IPython parallel tools and have an issue. I start up my python engines with: ipcluster start -n 3 Then the following code runs fine: from IPython.parallel ...