vote up 1 vote down star
1

In shells like the interactive python shell, you can usually use the arrow keys to move around in the current line or get previous commands (with arrow-up) etc.

But after I ssh into another machine and start python there, I get sessions like:

>>> import os 
>>> ^[[A

where the last character comes from arrow-up. Or, using arrow-left:

>>> impor^[[D

How can I fix this?

In the regular bash, arrow keys work fine. The weird behavior is just in the interactive python (or perl etc.) shell.

flag

43% accept rate
1  
Smells of termtype problem. – pjc50 May 21 at 14:00
I think this belongs on server-fault. This is caused by an incorrect terminal type. – epochwolf May 21 at 14:56
I agree with cartman below that it's a readline issue, not a terminal type issue. – dehmann May 21 at 15:10

4 Answers

vote up 3 vote down

Looks like readline is not enabled. Check if PYTHONSTART variable is defined, for me it points to /etc/pythonstart and that file is executed by the python process before going interactive, which setups readline/history handling.

link|flag
Thanks, I agree that readline seems to be the issue. The system does have /usr/lib/libreadline.so.5 though. There is no /etc/pythonstart. – dehmann May 21 at 14:35
1  
After some googling it seems python on that system might have to be recompiled, after installing readline-devel. – dehmann May 21 at 14:49
Yes you will have to recompile. – cartman May 22 at 10:06
vote up 1 vote down

Have you tried using a different SSH client? Some SSH clients have special, built-in keymappings for different remote processes. I ran into this one a lot with emacs.

What client are you using? I'd recommend trying Putty and SecureCRT to compare their behavior.

link|flag
Hmm, I just use the ssh command in the terminal (ssh -v says OpenSSH_3.9p1, OpenSSL 0.9.7a Feb 19 2003). – dehmann May 21 at 14:01
Try out Putty (its free) and get back to us :) – JoshJordan May 21 at 14:10
Okay, I just installed putty and used it to connect to the machine, but the behavior there is the same. – dehmann May 21 at 14:20
:( Definitely a server-side issue then. I will look into it and get back to you. – JoshJordan May 21 at 14:21
Using the ssh command to connect to some other machine works fine: There, I have no problems with the arrow keys. It seems to be the one particular system that has trouble. – dehmann May 21 at 14:23
vote up 0 vote down

How's your env variable $TERM set [a] when things work fine and [b] when they don't? Env settings are often the key to such problems.

link|flag
I just tried some TERM variable values: vt102, vt220, ansi, xterm, but none of them changed the behavior. – dehmann May 21 at 14:06
vote up 0 vote down

Did you call ssh with the -t parameter to tell ssh to allocate a virtual terminal for you?

From the man page:

-t
Force pseudo-tty allocation. This can be used to execute arbitrary screen-based programs on a remote machine, which can be very useful, e.g. when implementing menu services. Multiple -t options force tty allocation, even if ssh has no local tty.

Additionally you may also have to set the TERM environment variable on the server correctly as suggested in another post.

link|flag
Thanks, just tried ssh -t, but it didn't help. – dehmann May 21 at 14:25

Your Answer

Get an OpenID
or

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