IPython is a feature-rich interactive shell for Python

learn more… | top users | synonyms

14
votes
7answers
4k views

How to embed a Python interpreter in a PyQT widget

I want to be able to bring up an interactive python terminal from my python application. Some, but not all, variables in my program needs to be exposed to the interpreter. Currently I use a ...
36
votes
5answers
7k views

Autoreload of modules in IPython

Is there a way to have IPython automatically reload all changed code? Either before each line is executed in the shell or failing that when it is specifically requested to. I'm doing a lot of ...
5
votes
3answers
4k views

How can I check the memory usage of objects in ipython?

Duplicate http://stackoverflow.com/questions/33978/find-out-how-much-memory-is-being-used-by-an-object-in-python I am using ipython to run my code. I wonder if there is any module or command ...
25
votes
10answers
5k views

Is it possible to go into ipython from code?

For my debugging needs,pdb is pretty good. However, it would be MUCH cooler ( and helpful ) if I could go into ipython. Is this thing possible?
34
votes
5answers
58k views

What is causing ImportError: No module named pkg_resources after upgrade of Python on os X?

I just updated Python to 2.6.4 on my Mac. I installed from the dmg package. The binary did not seem to correctly set my Python path, so I added '/usr/local/lib/python2.6/site-packages' in ...
6
votes
2answers
468 views

How can I do an “if run from ipython” test in Python?

To ease debugging from Ipython, I include the following in the beginning of my scripts from IPython.Debugger import Tracer debug = Tracer() However, if I launch my script from the command line with ...
4
votes
2answers
3k views

how to reload a Class in python shell?

If I import a module defining a class of the same name belonging to a package, it is imported as a Class, not a Module because of the __init__.py of the parent package. See different import results at ...
0
votes
1answer
1k views

How to check whether I have IPython installed on my machine and what sequence to install these libraries?

I need to use python for a machine learning course and I also need to install some external libraries. I'm a bit confused as to what the correct order is for installation of everything as I've heard ...
2
votes
3answers
814 views

Compiling Python 2.6.6 and need for external packages wxPython, setuptools, etc… in Ubuntu

I compiled Python 2.6.6 with google-perf tools (tcmalloc) library to eliminate some of the memory issues I was having with the default 2.6.5. After getting 2.6.6 going it seems to not work becuase I ...
2
votes
2answers
1k views

cannot override sys.excepthook

I try to customize behavior of sys.excepthook as described by the recipe. in ipython: :import pdb, sys, traceback :def info(type, value, tb): : traceback.print_exception(type, value, tb) : ...
36
votes
4answers
10k views

Reloading submodules in Ipython

Currently I am working on a python project that contains sub modules and uses numpy/scipy. Ipython is used as interactive console. Unfortunately I am not very happy with workflow that I am using right ...
8
votes
4answers
2k views

Embedding IPython Qt console in a PyQt application

I'd like to embed an IPython qt console widget in a PyQt application I am working on. The code provided below (and adapted from http://stackoverflow.com/a/9796491/1332492) Accomplishes this for ...
7
votes
1answer
1k views

IPython and virtualenv: ignoring site-packages

Does anyone know how to get IPython to ignore site-packages in the context of a virtualenv that was created with the --no-site-packages flag?
5
votes
2answers
311 views

In a matplotlib figure window (with imshow), how can I remove, hide, or redefine the displayed position of the mouse?

I am using ipython with matplotlib, and I show images in this way: (started up with: ipython --pylab) figure() im = zeros([256,256]) #just a stand-in for my real images imshow(im) Now, as I ...
4
votes
3answers
1k views

How to use Pipe in ipython

In linux terminal, when the output of one command is too long to read in one page, i can do this: cat file | less so that i can read and scroll up and down the output from "cat file" how can i do ...
3
votes
1answer
124 views

Using magic commands outside of Interactive Shell in IPython

Is there a way to use "magic commands" from IPython from an outside file? For example if I have a file, "rcode.py" with the code: %load_ext rmagic %R a=c(1,2,3);b=c(2,3,4);print(summary(lm(a~b))) ...
-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 ...
23
votes
10answers
13k views

IPython workflow (edit, run)

Is there a GUI for IPython that allows me to open/run/edit Python files? My way of working in IDLE is to have two windows open: the shell and a .py file. I edit the .py file, run it, and interact with ...
24
votes
4answers
12k views

Emacs 23 and iPython

Is there anyone out there using iPython with emacs 23? The documents on the emacs wiki are a bit of a muddle and I would be interested in hearing from anyone using emacs for Python development. Do you ...
14
votes
5answers
9k views

Installing ipython with readline on the mac

I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn't seem to be available?) I installed ipython via easy_install. It works but is ...
5
votes
6answers
2k views

Launch an ipython shell on exception

Is there a way to launch an ipython shell or prompt when my program runs a line that raises an exception? I'm mostly interested in the context, variables, in the scope (and subscopes) where the ...
12
votes
4answers
2k views

Are there any iPython-like shells for Ruby or Rails?

I love iPython and am learning RoR along with some libraries like Mechanize and I'd like to be able to easily see what I'm working with in terms of introspection. I would like to be able to type "." + ...
11
votes
5answers
3k views

IPython tab completion not working

Tab completion on IPython seems not to be working. For example, import numpy numpy.<tab> simply adds a tab. import numpy num<tab> just adds a tab, too. Could you please suggest some ...
8
votes
3answers
3k views

Selecting rows from a Pandas dataframe with a compound (hierarchical) index

I'm suspicious that this is trivial, but I yet to discover the incantation that will let me select rows from a Pandas dataframe based on the values of a hierarchical key. So, for example, imagine we ...
5
votes
2answers
2k views

How to get unpickling to work with iPython?

I'm trying to load pickled objects in iPython. The error I'm getting is: AttributeError: 'FakeModule' object has no attribute 'World' Anybody know how to get it to work, or at least a ...
9
votes
3answers
11k views

How to install iPython on Snow Leopard

Does iPython work on Mac OS X 10.6.1 Snow Leopard? I'm python noob, how can I install iPython on my Mac? Links? suggestions? Thanks
5
votes
3answers
2k views

IPython doesn't find the Shell.IPShell class

After installing Django, I followed the tutorial Playing with the API. When I run the following command. python manage.py shell I got this error message. File ...
4
votes
2answers
623 views

How do I use vi keys in ipython under *nix?

Currently in Bash I use set -o vi to enable vi mode in my bash prompt. How do I get this going in ipython? Note: If an answer applies to all *nix, I'll remove the OS X from the title :)
8
votes
2answers
2k views

ipython reads wrong python version

I've been having trouble with Python, iPython and the libraries. The following points show the chain of the problematics. I'm running Python 2.7 on Mac Lion. iPython doesn't read the libraries of ...
2
votes
6answers
1k views

What is the best way to install python 2 on OS X?

A colleague of mine wants to use my python 2 code on his OS X (10.6) machine. My code imports several built-in python packages, including Tkinter and shelve, and also uses third-party packages, ...
1
vote
1answer
165 views

How to increase the ipython qtconsole scrollback buffer limit

When I load ipython with any one of: ipython qtconsole ipython qtconsole --pylab ipython qtconsole --pylab inline The output buffer only holds the last 500 lines. To see this run: for x in ...
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 ...
13
votes
1answer
7k views

IPython won't start

I'm running Windows 7 x64. I installed the 32x verson of Python 2.7.2 and IPython 0.11 using the Windows Installers. They installed all right. I added C:\Python27 and C:\Python27\Scripts to the system ...
7
votes
2answers
3k views

How to force iPython to use an older version of Python?

I am running an Ubuntu 8.10, using Python 2.5 out of the box. This is fine from the system point of view, but I need Python2.4 since I dev on Zope / Plone. Well, installing python2.4 is no challenge, ...
4
votes
2answers
1k views

Change ipython QtConsole settings

It is possible to make persistent changes to settings for default settings on Windows 7? I would like to change font-size and shell size. Thanks.
4
votes
1answer
805 views

Ipython with bpython features

I really admire bpython with its nice coloring and autocomplete, autohint and so on. The problem is, that there are some features in ipython which I can't get with out, for examble reload, magic ...
4
votes
2answers
736 views

IPython iterate main loop manually?

Can i somehow instance ipython (or even better, ipython-qtconsole) and step trough its's (IPython's) main loop manually? I want to edit panda3d programs on the fly. EDIT1: Here is code sample which ...
4
votes
2answers
362 views

How can I interrupt the IPython interpreter as opened in emacs?

Let's say I accidentally evaluate an enormous variable--a list with a ba-jillion elements, or whatever. As they scroll down my screen and my computer crawls to a halt, is there a good way to ...
4
votes
2answers
1k views

Py3k and IPython

I'm moving on up to Python 3, but can't seem to find an IPython release for it. The main IPython release page doesn't list anything appropriate. Any help in getting IPython working for Py3k would be ...
3
votes
1answer
165 views

Equivalent of Matlab “whos” command for Lua interpreter?

What is the Lua equivalent of the Octave/Matlab/IPython "whos" command? I'm trying to learn Lua interactively and would like to see what variables are currently defined.
3
votes
1answer
269 views

unexpected indent in ipython 0.10.1

I have a problem with ipython 0.10.1 in ubuntu 11.04 and python 2.7.1. In previous versions of ipython indentation did not matter when working interactively. Now instead any indented statement ...
3
votes
3answers
592 views

IPython tab completes only some modules

I'm using the EPD version of python and IPython. After installing some modules using easy_install I notice that, although they can be imported, they cannot be tab completed. They exist on the path ...
2
votes
1answer
38 views

why is there no reference between the app and the widget?

This is a follow up to why will the application show after sys.exit command? I'm following this tutorial: http://zetcode.com/tutorials/pyqt4/firstprograms/ I modified the code slightly to test ...
2
votes
1answer
84 views

Using IPython as an effective debugger

How can I embed an IPython shell in my code and have it automatically display the line number and function in which it was invoked? I currently have the following setup to embed IPython shells in my ...
2
votes
2answers
263 views

Working with curses in IPython. How can I improve this?

I've found a way to interactively work with curses while still enjoying most of the benefits of IPython. It works, with some limitations, but not as well as I'd like. The original problem, of course, ...
2
votes
1answer
701 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 ...
1
vote
1answer
265 views

Per-cell output for threaded IPython Notebooks

I don't want to raise this as an issue, because it seems like a completely unreasonable feature request for what is a fairly amazing tool. But if any readers happen to be familiar with the ...
1
vote
2answers
1k views

installing IPython with two versions of Python (Windows)

Is it possible to have IPython (0.12) installed on the same system with two different versions of Python (v 2.7 and 3.2)? Currently I have both versions of Python running happily on my system. I am ...
0
votes
1answer
1k views

starting ipython

I want to run Ipython (version 0.12) on my windows xp computer on which I already have python 2.7 installed.I installed via the Windows binary installer, but after installation Ipython did not show up ...
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 2