Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I repeat the last command? The usual keys: Up, Ctrl+Up, Alt-p don't work. They produce nonsensical characters.

(ve)[kakarukeys@localhost ve]$ python
Python 2.6.6 (r266:84292, Nov 15 2010, 21:48:32) 
[GCC 4.4.4 20100630 (Red Hat 4.4.4-10)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print "hello world"
hello world
>>> ^[[A
  File "<stdin>", line 1
    ^
SyntaxError: invalid syntax
>>> ^[[1;5A
  File "<stdin>", line 1
    [1;5A
    ^
SyntaxError: invalid syntax
>>> ^[p
  File "<stdin>", line 1
    p
    ^
SyntaxError: invalid syntax
>>> 
share|improve this question
Up arrow works correctly for me (Ubuntu), it's weird. – Vincent Savard Nov 27 '10 at 3:11
2  
Ditto, up arrow works for me on Windows. What shell are you using, and what terminal program on what OS? – fmark Nov 27 '10 at 3:12
I installed a separate python 2.6.6 installation on Fedora 13, run virtualenv, using the default python shell, on gnome-terminal – kakarukeys Nov 27 '10 at 3:15
You should install ipython. It's a much better interpreter than the default. – Falmarri Nov 27 '10 at 3:44

8 Answers

up vote 16 down vote accepted

I use the following to enable history on python shell.

This is my .pythonstartup file . PYTHONSTARTUP environment variable is set to this file path.

# python startup file 
import readline 
import rlcompleter 
import atexit 
import os 
# tab completion 
readline.parse_and_bind('tab: complete') 
# history file 
histfile = os.path.join(os.environ['HOME'], '.pythonhistory') 
try: 
    readline.read_history_file(histfile) 
except IOError: 
    pass 
atexit.register(readline.write_history_file, histfile) 
del os, histfile, readline, rlcompleter

You will need to have the modules readline, rlcompleter to enable this.

Check out the info on this at : http://docs.python.org/using/cmdline.html#envvar-PYTHONSTARTUP.

Modules required:

  1. http://docs.python.org/library/readline.html
  2. http://docs.python.org/library/rlcompleter.html
share|improve this answer
this is pretty cool. how do i use it? – kakarukeys Nov 27 '10 at 3:17
@user496852: Just set the env variable PYTHONSTARTUP to the filepath containing above code. Also check, if you have the required modules. – pyfunc Nov 27 '10 at 3:19
1  
it is not necessary, just follow instruction of basak's answer and assign key bindings – Tim Mar 6 at 8:46

On Windows, go to Options -> Configure IDLE -> Keys and there select history-next and then history-previous to change the keys.

How you do that is click on Get New Keys for Selection and you are ready to choose whatever key combination you want.

share|improve this answer

Ctrl+p is the normal alternative to the up arrow. Make sure you have gnu readline enabled in your Python build.

share|improve this answer
I must have left out this. – kakarukeys Nov 27 '10 at 3:37

Ipython isn't allways the way... I like it pretty much, but if you try run Django shell with ipython. Something like>>>

ipython manage.py shell

it does'n work correctly if you use virtualenv. Django needs some special includes which aren't there if you start ipython, because it starts default system python, but not that virtual.

share|improve this answer
alt+p  
go into options tab
configure idle
Keys

look under history-previous for the command, you can change it to something you like better once here.

share|improve this answer

Up arrow works for me too. And i don't think you need to install the Readline module for python builtin commandline. U should try Ipython to check. Or maybe it's the problem of your keybord map.

share|improve this answer

ALT + p works for me on Enthought Python in Windows.

share|improve this answer

This can happen when you run python script.py vs just python to enter the interactive shell, among other reasons for readline being disabled.

Try:

import readline
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.