472,119 Members | 983 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,119 software developers and data experts.

how to move cursor in Interactive Interpreter

i have a question.
when i run Interactive Interpreter in linux command promt,how can i
move the cursor.
for example,when i enter a string,i often enter the quotation mark ""
first,and the move the cursor inside the mark to enter the string,in
windows,it is ok.but when i do that in linux,pressing the "left" key
will just print "^[[D" in the screen ,but not what i want.
so , how can i move the cursor Interactive Interpreter in linux?
i've googled and find nothing useful.who i tell me what to do?

Aug 14 '07 #1
4 3141
ya********@gmail.com wrote:
i have a question.
when i run Interactive Interpreter in linux command promt,how can i
move the cursor.
for example,when i enter a string,i often enter the quotation mark ""
first,and the move the cursor inside the mark to enter the string,in
windows,it is ok.but when i do that in linux,pressing the "left" key
will just print "^[[D" in the screen ,but not what i want.
so , how can i move the cursor Interactive Interpreter in linux?
i've googled and find nothing useful.who i tell me what to do?
Python uses GNU readline for cursor movements. The Python version that ships
with your distribution should work out of the box. If you compile Python
yourself make sure that the development package (not just the binary) is
installed. For Suse this is readline-devel.

Peter
Aug 14 '07 #2
On 8 14 , 2 44 , Peter Otten <__pete...@web.dewrote:
yan.pyt...@gmail.com wrote:
i have a question.
when i run Interactive Interpreter in linux command promt,how can i
move the cursor.
for example,when i enter a string,i often enter the quotation mark ""
first,and the move the cursor inside the mark to enter the string,in
windows,it is ok.but when i do that in linux,pressing the "left" key
will just print "^[[D" in the screen ,but not what i want.
so , how can i move the cursor Interactive Interpreter in linux?
i've googled and find nothing useful.who i tell me what to do?

Python uses GNU readline for cursor movements. The Python version that ships
with your distribution should work out of the box. If you compile Python
yourself make sure that the development package (not just the binary) is
installed. For Suse this is readline-devel.

Peter
thanks for your reply
I thought maybe i just didn't install readline correctly,so i deleted
python and tried to re-compile the source code(I downloaded the .bz2
version).This time ,I found in the "./Modules/Setup" the description
for "readline":

# GNU readline. Unlike previous Python incarnations, GNU readline is
# now incorporated in an optional module, configured in the Setup
file
# instead of by a configure script switch. You may have to insert a
# -L option pointing to the directory where libreadline.* lives,
# and you may have to change -ltermcap to -ltermlib or perhaps remove
# it, depending on your system -- see the GNU readline instructions.
# It's okay for this to be a shared library, too.

#readline readline.c -lreadline -ltermcap

dont know exactly what to do,I just delete the "#" mark in the line
"#readline readline.c -lreadline -ltermcap " , then tried to
"configure","make",but errors of readline occor here.
what am i supposed to do to install the module GNU readline correctly
then?
thanks

by the way,my linux is Mandriva 10

Aug 14 '07 #3
ya********@gmail.com wrote:
what am i supposed to do to install the module GNU readline correctly
then?
by the way,my linux is Mandriva 10
Use the package manager of your distribution to install the readline
development package -- after some struggle with Mandriva's website I came
to suppose that it's libreadline5-devel for you:

urpmi libreadline5-devel.rpm

After you have successfully installed that package unpack the python archive
into a fresh directory and do the configure/make/install dance. No manual
changes should be necessary.

Peter

Aug 14 '07 #4
On 8 14 , 9 20 , Peter Otten <__pete...@web.dewrote:
yan.pyt...@gmail.com wrote:
what am i supposed to do to install the module GNU readline correctly
then?
by the way,my linux is Mandriva 10

Use the package manager of your distribution to install the readline
development package -- after some struggle with Mandriva's website I came
to suppose that it's libreadline5-devel for you:

urpmi libreadline5-devel.rpm

After you have successfully installed that package unpack the python archive
into a fresh directory and do the configure/make/install dance. No manual
changes should be necessary.

Peter


i've re-install python as you said,and it works now
i really appreciate your help
thanks!

Aug 14 '07 #5

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

147 posts views Thread by Sateesh | last post: by
6 posts views Thread by Avi Berkovich | last post: by
2 posts views Thread by Miki Tebeka | last post: by
10 posts views Thread by notejam | last post: by
reply views Thread by Simon Eves | last post: by
3 posts views Thread by Sal | last post: by
3 posts views Thread by R. Bernstein | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.