Python论坛  - 讨论区

标题:[python-chinese] 升级python2.4后的问题

2005年02月28日 星期一 11:25

Kaven Wong kaven.wong at gmail.com
Mon Feb 28 11:25:58 HKT 2005

我的系统是Redhat9,系统自己装了python2.2,昨天我新装了python2.4,这样系统中有两个版本同时存在,缺省的启动python是2.2
版本,我只有输入python2.4才会启动2.4的版本,能不能去掉2.2的版本,去掉后怎么让2.4成为缺省的呢?

同时,我昨天还安装了BitTorrent3.9.1,启动时它要求python要2.3版本以后的,可是系统缺省的认为是2.2版本,导致bt不能使用。

有谁解决过类似的问题吗?谢谢!

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月28日 星期一 11:34

limodou limodou at gmail.com
Mon Feb 28 11:34:53 HKT 2005

具体怎么弄我也不清楚,好象内核要重建一个什么东西。因为是因为在csdn上好象问过这个问题(记不清了),他是找了一位内核高手给解决的,至于怎么解决他没有说。因此我也不会,不过可以请教内核高手可能知道怎么回事。


On Mon, 28 Feb 2005 11:25:58 +0800, Kaven Wong <kaven.wong at gmail.com> wrote:
> 我的系统是Redhat9,系统自己装了python2.2,昨天我新装了python2.4,这样系统中有两个版本同时存在,缺省的启动python是2.2
> 版本,我只有输入python2.4才会启动2.4的版本,能不能去掉2.2的版本,去掉后怎么让2.4成为缺省的呢?
> 
> 同时,我昨天还安装了BitTorrent3.9.1,启动时它要求python要2.3版本以后的,可是系统缺省的认为是2.2版本,导致bt不能使用。
> 
> 有谁解决过类似的问题吗?谢谢!
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
I like python! 
My Blog: http://www.donews.net/limodou
New Maillist: http://groups-beta.google.com/group/python-cn

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月28日 星期一 11:36

epaulin epaulin at gmail.com
Mon Feb 28 11:36:42 HKT 2005

ln -sf /usr/bin/python2.4 /usr/bin/python

Kaven Wong 写道:

>我的系统是Redhat9,系统自己装了python2.2,昨天我新装了python2.4,这样系统中有两个版本同时存在,缺省的启动python是2.2
>版本,我只有输入python2.4才会启动2.4的版本,能不能去掉2.2的版本,去掉后怎么让2.4成为缺省的呢?
>
>同时,我昨天还安装了BitTorrent3.9.1,启动时它要求python要2.3版本以后的,可是系统缺省的认为是2.2版本,导致bt不能使用。
>
>有谁解决过类似的问题吗?谢谢!
>  
>
>------------------------------------------------------------------------
>
>_______________________________________________
>python-chinese list
>python-chinese at lists.python.cn
>http://python.cn/mailman/listinfo/python-chinese
>  
>



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月28日 星期一 11:38

orciloud tang orciloud at gmail.com
Mon Feb 28 11:38:13 HKT 2005

基础知识
Which python 然后rm 得到的path..
再 ln -s /python/2.4 /usr/local/bin/python
Exit;



On 2/28/05 11:25 AM, "Kaven Wong" <kaven.wong at gmail.com> wrote:

> 我的系统是Redhat9,系统自己装了python2.2,昨天我新装了python2.4,这样系统中有两个版本同时存
> 在,缺省的启动python是2.2
版本,我只有输入python2.4才会启动2.4的版本,能不能去掉2.2的版本,
> 去掉后怎么让2.4成为缺省的呢?

同时,我昨天还安装了BitTorrent3.9.1,启动时它要求python
> 要2.3版本以后的,可是系统缺省的认为是2.2版本,导致bt不能使用。

有谁解决过类似的问题吗?谢
> 谢!

> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese




[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月28日 星期一 13:06

**** alpha at hnpta.net.cn
Mon Feb 28 13:06:20 HKT 2005

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050228/ff149a95/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年02月28日 星期一 15:35

梅劲松  stephen.cn at gmail.com
Mon Feb 28 15:35:05 HKT 2005

find / -name python
mv 找到的旧版本的python python_bak
ln -s 新的python 旧的python


On Mon, 28 Feb 2005 11:36:42 +0800, epaulin <epaulin at gmail.com> wrote:
> ln -sf /usr/bin/python2.4 /usr/bin/python
> 
> Kaven Wong 写道:
> 
> >我的系统是Redhat9,系统自己装了python2.2,昨天我新装了python2.4,这样系统中有两个版本同时存在,缺省的启动python是2.2
> >版本,我只有输入python2.4才会启动2.4的版本,能不能去掉2.2的版本,去掉后怎么让2.4成为缺省的呢?
> >
> >同时,我昨天还安装了BitTorrent3.9.1,启动时它要求python要2.3版本以后的,可是系统缺省的认为是2.2版本,导致bt不能使用。
> >
> >有谁解决过类似的问题吗?谢谢!
> >
> >
> >------------------------------------------------------------------------
> >
> >_______________________________________________
> >python-chinese list
> >python-chinese at lists.python.cn
> >http://python.cn/mailman/listinfo/python-chinese
> >
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号