IPython is a feature-rich interactive shell for Python

learn more… | top users | synonyms

0
votes
0answers
46 views

h5py and Enthought python distribution:

I have followed the thread at h5py gives error after installation to install the h5py python module using brew, and everything seems to be working fine. -bash-3.2$ python Python 2.7.2 ...
0
votes
0answers
42 views

Use IPython magic functions in ipdb shell

I want to use IPython magic functions like %paste, %cd in ipdb shell. Is is possible and how?
0
votes
0answers
17 views

Handle exceptions whilst waiting for next ipython parallel map result

I want to iterate over some asynchronous results from an ipython parallel map as they arrive. The only way I can find to do this is to iterate over the results object. However if one of the tasks ...
0
votes
1answer
76 views

Run some tasks in IPython Notebook in detached mode

Is it possible to run some long tasks in IPython Notebook, close browser and then after some time open it again and reveal results of these tasks? Say, task like this: def f(): import time ...
0
votes
0answers
36 views

Error executing matplotlib.pyplot.subplots()

I have a script that creates png images from log data. It works fine on a production machine, but now spits errors on a new box while processing this line: fig, ax = plt.subplots(1,1, ...
1
vote
0answers
43 views

Open an ipython notebook via double-click on osx

I've downloaded a couple of ipython notebooks, and I'd like to open them in browser tabs without navigating to the directory I've downloaded them to and running ipython notebook notebook_name.ipynb. ...
0
votes
1answer
82 views

find the distance between a point and a curve python

How can I find the closet distance between my trajectory and (384400,0,0)? Also, how can I the distance from (384400,0,0) to the path at time t = 197465? I understand that the arrays have the data ...
0
votes
2answers
86 views

plotting a sphere in python for an orbital trajectory

How can I put a sphere of radius 1737 at the location of (384400,0,0)? This sphere would be the moon in my trajectory. Everything else with the code is fine, I just don't know how to add a sphere ...
0
votes
2answers
97 views

equivalent of raw_input in Ipython notebook

I am just messing around with Ipython notebook, and I was going to create a battleship game...unfortunately I need lines like the following in the code in order to make a game like that: move = ...
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
0answers
54 views

easy_install ipython not working

when I type this command easy_install ipython in the command shell it shows me the following log error. I am using a proxy server. Can someone help me regarding this: C:\>easy_install ipython ...
0
votes
1answer
93 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 ...
0
votes
0answers
32 views

IPython starting ipclusters

I'm using this amazing IPython notebook. I'm very interested into parallel computing right now and would like to use MPI with IPython (and MPI4py). But I can't start a cluster with ipcluster start ...
0
votes
1answer
90 views

Launching the $ command line in Canopy iPython

How can I launch the command that begins with $ in Canopy iPython ? I am using Windows 7. It seems such a trivial question but I tried to find an answer by googling every possible version of my ...
0
votes
2answers
53 views

Name 'i' is not defined

I am running this code in iPython and things seem to work well until I get to the last line print 'Probability that x is of class %i is %f' % (i, get_p_y_given_x(x_value)[i]) iPython throws an ...
1
vote
1answer
71 views

How to write inline latex code in IPython notebook

This might be painfully obvious but how do I write Latex script inline in IPython notebook file so when it is parsed it does not start a new line?
2
votes
1answer
46 views

scipy.sparse __add__ method being called when adding to a regular numpy ndarray?

I'm calculating the dot product between a scipy.sparse matrix (CSC) and a numpy ndarray vector: >>> print type(np_vector), np_vector.shape <type 'numpy.ndarray'> (200,) >>> ...
0
votes
1answer
34 views

Invalid Syntax - easy_install with https://

I am using IPython. I am attempting to install a package from GitHub. I am using the following: easy_install https://github.com/lisa-lab/pylearn2/tree/master/pylearn2 My output states invalid ...
0
votes
0answers
62 views

IPython --pylab working in emacs under windows

I am trying to get ipython --pylab working within emacs on windows. I have the latest ipython.el I am using python2.7, with the latest versions of emacs for windows. I am using the latest distribution ...
-1
votes
1answer
27 views

Reload module on remote ipengine when using ipython

Hoping this has a straightforward answer that I missed from my reading of the docs. This following is the problem - I have a module loaded on all ipengine(s) on startup I've since made changes to ...
0
votes
1answer
58 views

Escaping dollar sign in ipython notebook

I have a markdown cell in iPython that contains four dollar signs. iPython interprets anything between dollar signs as a MathJax expression, which is not what I want. How do I escape the dollar signs? ...
0
votes
1answer
33 views

Stacking Arrays in pylab using vstack

I have to following code to stack arrays and solve a system of equations: 1 import numpy as np 2 from numpy.linalg import solve 3 xi = np.array([-1., 1., -2]) 4 yi = ...
0
votes
0answers
104 views

mayavi.mlab crashes on osx 10.8.3

I have Enthought's Canopy on a macbook pro retina with osx 10.8.3. I get the crash dump (see below) when calling any mayavi.mlab function. Does anyone have a clue. Thanks anyway! (Canopy 32bit) ...
0
votes
1answer
33 views

How to open ipython command history on a text editor?

I am using a windows machine and would like to open ipython history commands using the default text editor. Is there a command that allows me to do this? Thanks.
0
votes
0answers
61 views

What statistics module for python supports one way ANOVA with post hoc tests (Tukey, Scheffe or other)?

I have tried looking through multiple stats modules for python but can't seem to find any that support one away ANOVA post hoc tests.
1
vote
0answers
68 views

Interactive plotting in a loop with matplotlib

I simply want to plot using matplotlib, via ipython, as my data comes in. I am opening ipython using the -pylab option. In the code below, the time.sleep(1) just acts as a place holder for the time it ...
1
vote
1answer
46 views

error: video system not initialized (kivy, ipython)

I created following ipython_config.py script for IPython: c = get_config() c.TerminalInteractiveShell.editor = 'C:\PROGRA~2\NOTEPA~1\NOTEPA~1.exe' Now when I %edit some file I get rather unwanted ...
0
votes
1answer
33 views

Ipython and Curses on Windows

I have been trying all sorts of sourceforge projects that try to port GNU functionality to Windows, with the goal to create a very GNU aware Ipython profile providing the best terminal environment I ...
0
votes
0answers
110 views

ImportError when using Spyder and Ipython in a virtualenv

I create a virtualev (~/ENV) in Ubuntu 12.10, using the --system-site-packages option, where I install using pip sphynx and pyzmq (necessary to install spyder) and then spyder itself and then ipython ...
0
votes
1answer
134 views

TypeError: exceptions must be old-style classes or derived from BaseException, not NoneType

So this has confused me for too long today. I am tossing it up to you guys. I am getting TypeError: exceptions must be old-style classes or derived from BaseException, not NoneType even when I ...
2
votes
2answers
249 views

Convert ipython notebooks to pdf-html

I want to convert my ipython-notebooks to print them, or simply send them to other in html format. I have notice that exist already a tool to do that, nbconvert. I have downloaded it, but I have no ...
-1
votes
1answer
30 views

Make IPython use my original startup script

I had set up a startup.py script for python that imported the commonly used modules like re, os and sys. Ipython however does not seem to run it at startup because trying to use one of the modules ...
0
votes
1answer
109 views

ipython install new modules

I am used to the R functionality of installing packages and I am trying to do the same thing with ipython. Sometimes the following method works but then again sometimes it doesn't and I would like to ...
0
votes
0answers
24 views

ipython3 on centOS 6.3

Has anyone ever used ipython3 with centOS 6.3 ? I got ipython installed (python2.6) but seems I am not able to use it with python3 there seems to be a bug for fedora 18 ...
0
votes
1answer
44 views

How to autoexecute ipython notebook cells just like in Mathcad

In Mathcad Prime 2 you have this feature where if you change anything at the top of a worksheet it automatically recomputes all subsequent formulas that are affected by the correction. It figures out ...
2
votes
2answers
274 views

Unable to create plot in external window in Canopy ipython notebook

I just started using Canopy and it's very nice, but I am unable to create a figure in an external window in the iPython notebook. I would expect plot(rand(100)) in the notebook to create a new ...
0
votes
1answer
65 views

ipython notebook image slide

I'd like to know how to make image list from SimpleCV.ImageSet(1.3) to a ipython notebook (1.0.dev) list A live example is here, line near "In [22]". It's seems to call some predefined function ...
0
votes
1answer
15 views

bug in IPython history?

Is this a bug, or am I not understanding something about %hist in IPython? In [79]: hist -g shapely 102/16: from shapely import Point, mapping 102/17: from shapely import Point, mapping 102/18: from ...
1
vote
1answer
446 views

Enthought Canopy ipython configuration: bad interpreter No such file or directory

I'm trying to launch Enthought Canopy's ipython from a Terminal in Mac OS 10.8.3 using the following command: ...
1
vote
0answers
50 views

Is this a Python 3 regression in IPython Notebook?

I am attempting to create some simple asynchronously-executing animations based on ipythonblocks and I am trying to update the cell output area using clear_output() followed by a grid.show(). For ...
0
votes
1answer
21 views

Autoclose brackets and quotes in IPython

Is there a way to autoclose brackets and quotes in IPython. Just like in RStudio when you type an opening bracket like [ it automatically types the closing bracket ] and moves the cursor inside the ...
1
vote
1answer
73 views

execute Bash command from IPython

I want to source my bash environment when executing a bash command from IPython using the ! operator, thus allowing me access to my defined bash functions: In[2]: !<my_fancy_bash_function> ...
0
votes
2answers
88 views

Can I package the IPython Notebook, dependencies and additional modules?

I need the following working environment for a project with several developers: python3 ipython (notebook) numpy networkx matplotlib Installing these packages on different systems (OSX, Ubuntu, ...
0
votes
0answers
20 views

Ipython QtConsole Ctrl+D ignored

I swear 5 minutes ago it was working fine (but maybe not, I don't remember). I know it was working yesterday for sure. What could have changed? Anytime I am in QtConsole, Ctrl-D seems to be ...
-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 ...
2
votes
2answers
60 views

Why can't exit() terminate the program immediately while in the readlines loop?

Part of my program is: f = open('test.txt') for line in f.readlines(): print 'test' exit() Why can't I exit the program immediately when first meet the exit? Instead, my program will exit ...
0
votes
0answers
54 views

Drawing and clearing networkx graphs in ipython --pylab

This is annoyance really, but is becoming an increasing headache and wasting time. I'm working with networkx objects in a Win7 IPython pylab environment (2.7.3). The interface between IPython and ...
1
vote
1answer
41 views

Getting NameError with Django 1.5 and IPython

I'm running Django 1.5.1, Python 2.7.2, and IPython 0.13.2. If I do "python ./manage.py shell" from within my Django project directory, I get the following error: from django import forms class ...
1
vote
1answer
58 views

Redisplaying modified plot in subsequent IPython notebook cells

I am creating a demo using IPython notebook. I launch the notebook in the pylab inline mode, e.g. ipython notebook --pylab=inline, and what I would like to do is progressively build a plot, modifying ...
1
vote
1answer
65 views

ipython rolling log

I want to have last 500Mb worth of ipython input and output saved to a file The saving described above should be able to get around instances when I have to kill ipython. For example, saving based on ...

1 2 3 4 5 17