Path: csiph.com!usenet.pasdenom.info!gegeweb.org!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:not': 0.03; 'subject:Python': 0.06; '*not*': 0.07; 'source.': 0.07; 'happen.': 0.09; 'overwrite': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'skip:/ 10': 0.09; 'subject:keys': 0.09; 'python': 0.11; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'run:': 0.16; 'wrote:': 0.18; 'install': 0.23; 'header:User-Agent:1': 0.23; '(or': 0.24; 'source': 0.25; 'header:X-Complaints-To:1': 0.27; 'installed': 0.27; "d'aprano": 0.31; 'directory,': 0.31; 'steven': 0.31; 'run': 0.32; 'but': 0.35; 'charset:us-ascii': 0.36; 'to:addr:python- list': 0.38; 'bad': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'received:208': 0.61; 'default': 0.69; 'article': 0.77; './configure': 0.84; 'ball,': 0.84; 'right!': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Ned Deily Subject: Re: Python shell: Arrow keys not working in PuTTY Date: Mon, 23 Feb 2015 18:35:39 -0800 References: <41302A7145AC054FA7A96CFD03835A0A0B9451B8@EX10MBX02.EU.NEC.COM> <54ebdcfa$0$11100$c3e8da3@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 208.80.65.156 User-Agent: MT-NewsWatcher/3.5.3b3 (Intel Mac OS X) X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1424745346 news.xs4all.nl 2978 [2001:888:2000:d::a6]:42789 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:86289 In article <54ebdcfa$0$11100$c3e8da3@news.astraweb.com>, Steven D'Aprano wrote: > Almost right! > > You can install Python from source. Unzip the source tar ball, cd into the > source directory, and run: > > ./configure > make > > BUT do *not* run `make install` as that will overwrite your system Python > and Bad Things will happen. Instead, run `make altinstall`. With no --prefix= on ./configure, the default install location is to /usr/local, so "make install" would install a link at /usr/local/bin/python (or python3) and it would only overwrite your system Python if the system Python happened to be installed in /usr/local/bin/. -- Ned Deily, nad@acm.org