How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T03:11:34Z http://stackoverflow.com/feeds/question/142764 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/142764/how-do-i-upgrade-python-2-5-2-to-python-2-6rc2-on-ubuntu-linux-8-04 4 How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04? Dirk 2008-09-27T02:15:03Z 2009-03-11T08:41:01Z <p>Hi,</p> <p>I'd like to how to upgrade the default python installation(2.5.2) supplied with ubuntu 8.04 to python 2.6rc2. I'd like to make 2.6 the default python version on the system and migrate all the other useful installed python libraries installed on 2.5.2 to python 2.6rc2. Please let me know how I can achieve this.</p> <p>Thanks Dirk</p> http://stackoverflow.com/questions/142764/how-do-i-upgrade-python-2-5-2-to-python-2-6rc2-on-ubuntu-linux-8-04/142770#142770 8 Answer by John Millikin for How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04? John Millikin 2008-09-27T02:19:38Z 2008-09-27T02:25:26Z <p>With the warning that I think it's a tremendously bad idea to replace the default Python with an unreleased beta version:</p> <p>First, install 2.6rc2. You can download the source from the <a href="http://www.python.org/download/releases/2.6/" rel="nofollow">Python website</a>. Standard <code>./configure &amp;&amp; make &amp;&amp; sudo make install</code> installation style.</p> <p>Next, remove the <code>/usr/bin/python</code> symlink. Do <em>not</em> remove <code>/usr/bin/python2.5</code>. Add a symlink to 2.6 with <code>ln -s /usr/local/bin/python2.6 /usr/bin/python</code>.</p> <p>Once again, I think this is a terrible idea. There is almost certainly a better way to do whatever you're trying to accomplish.</p> <p><hr /></p> <p>Migrating installed libraries is a much longer process. Look in the <code> /usr/lib/python2.5/site-packages/</code> and <code> /usr/local/lib/python2.5/site-packages/</code> directories. Any libraries installed to them will need to be re-installed with 2.6. Since you're not using a packaged Python version, you cannot use Ubuntu's packages -- you'll have to manually upgrade all the libraries yourself. Most of them can probably be installed with <code>sudo easy_install &lt;name&gt;</code>, but some like PyGTK+ are not so easy. You'll have to follow custom installation procedures for each such library.</p> http://stackoverflow.com/questions/142764/how-do-i-upgrade-python-2-5-2-to-python-2-6rc2-on-ubuntu-linux-8-04/142777#142777 1 Answer by Mez for How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04? Mez 2008-09-27T02:25:18Z 2008-09-27T02:25:18Z <p>Is there any need to?</p> <p>Ubuntu in general doesn't package RC releases. 2.6 will not be available in Ubuntu until Jaunty Jackalope.</p> <p>However,, if you insist that you need to install it, then, you'll have to do so without a package manager.</p> <p>Download the package, and unzip it to a directory</p> <p>run the following commands (waiting for each to finish as you do so)</p> <pre><code>./configure make sudo make install </code></pre> <p>There, you have it installed.</p> <p>It's better to wait for it to be packaged first, espescially as Python is used in a lot of ubuntu internals, so may break your system horribly</p> http://stackoverflow.com/questions/142764/how-do-i-upgrade-python-2-5-2-to-python-2-6rc2-on-ubuntu-linux-8-04/152185#152185 1 Answer by Dickon Reed for How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04? Dickon Reed 2008-09-30T08:10:39Z 2008-09-30T08:10:39Z <p>It would not be wise to change the default version of Python, i.e. what you get when you type "python" into a shell. However, you can have multiple versions of python installed. The trick is to make sure that the program named "python" on the path is the system supplied version. If you want to run your install of Python 2.6 you'd then type python2.6 into a shell to start it.</p> <p>Download the package and unzip it, then run:</p> <pre><code>./configure make sudo make install ls -l /usr/local/bin </code></pre> <p>You should see a python and a python2.6 file, both created on the day you ran make install; delete the python file. Then when <code>python</code> is launched the standard system Python version from <code>/usr/bin</code> will be run, and when <code>python2.6</code> is run you get your shiny new python 2.6rc2. Python displays the version when it starts an interactive interpreter.</p> http://stackoverflow.com/questions/142764/how-do-i-upgrade-python-2-5-2-to-python-2-6rc2-on-ubuntu-linux-8-04/633753#633753 6 Answer by Staale for How do I upgrade python 2.5.2 to python 2.6rc2 on ubuntu linux 8.04? Staale 2009-03-11T08:41:01Z 2009-03-11T08:41:01Z <p>I have the same issue, and apparently pre-built binaries can be found here:</p> <pre><code># Python 2.6 deb http://ppa.launchpad.net/doko/ubuntu intrepid main deb-src http://ppa.launchpad.net/doko/ubuntu intrepid main </code></pre>