Tagged Questions
0
votes
1answer
23 views
getting ipython3 to use readline in ubuntu linux
I have a python3.3.1 installation on ubuntu (though the default is python2.6.5).I generally work using the virtualenvwrapper.
I wanted to install ipython which supports python3.So I did this
...
0
votes
1answer
17 views
Distinguish methods from attributes in ipython tab completion
Is it possible to configure IPython such that the tab completion allows me to visually distinguish between attributes and methods of an object? Probably the nicest way do this is by color, similar to ...
0
votes
1answer
31 views
IPython's history-search-backward not working as desired
IPython's history-search-backward feature is one of my favorite features. history-search-backward allows you to type part of a command and then search backward through your readline history for ...
0
votes
1answer
74 views
Readline sometimes works in iPython, sometimes doesn't
I cannot find a pattern to this but when I launch ipython from a Bash shell, sometimes I find that readline commands like ctrl a and ctrl e work fine for moving to the front/back of a line. Sometimes, ...
4
votes
2answers
625 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 :)
0
votes
0answers
89 views
ipython upgrade to 0.12 kills tab completion
When I upgraded from ipython 0.11 to 0.12 in a virtualenv using pip, tab completion breaks. I have tried to uninstall and reinstall, but that is not working. I also tried to make sure that I had ...
0
votes
1answer
62 views
ipython: pressing 'esc' key breaks readline
In ipython, if I press 'esc' followed by 'enter' (and possibly other characters?), readline breaks. I can no longer search through command history using the 'up' key, and some commands (e.g., ...
3
votes
2answers
910 views
libedit/readline conflict with ipython 3.2.2 on OS X 10.7 Lion
I've been trying to set up ipython 3 (running 2.7 works fine) on a mac running Lion, but can't seem to get rid of the following error:
192:~ mlauria$ ...
10
votes
2answers
5k views
pip installing ipython with readline on OSX Lion
What is required to get ipython fully functional on OSX Lion? I'm trying to get ipython with readline working and having no success.
My approach:
(inside a virtual environment)
pip install ...
3
votes
2answers
1k views
Ipython no readline available and pip install readline error
I installed ipython but it doesn't have the readline option. I first downloaded gnu readline and compiled and installed. DIdn't know whether it was a proper solution but was the first thing I thought ...
2
votes
1answer
443 views
Tab-completion in iPython on Mac OS X Snow Leopard
I have installed iPython and Readline on Mac OS X Snow Leopard and am having difficulty getting tab-completion to work properly.
For example, when I do
import sys
sys.<tab>
the tab key only ...
4
votes
0answers
234 views
Remove items from iPython's history [duplicate]
Possible Duplicate:
raw_input without leaving a history in readline
I'm working on a simple interactive application that relies on iPython. I'm running into a problem where prompting a ...
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 ...
4
votes
3answers
1k views
How do I make IPython organize tab completion possibilities by class?
When an object has hundreds of methods, tab completion is hard to use. More often than not the interesting methods are the ones defined or overridden by the inspected object's class and not its base ...