1
nodejx 2013-09-02 09:27:43 +08:00
试试pythonbrew吧。
|
2
kumu 2013-09-02 10:19:07 +08:00 1
升级流程如下:
# wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tgz # tar xf Python-2.7.5.tgz # cd Python-2.7.5 # ./confgure && make && make install # ln -sf /usr/local/bin/python2.7 /usr/local/bin/python # python Python 2.7.5 (default, Aug 26 2013, 18:29:38) [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> quit() |
3
314x OP |