suse安装python
‘壹’ 请问各路大侠,我的系统的SUSE linux,可不可以像在windows中一样双击python-2.6.msi来安装python2.6
linux系统一般都有自己的软件软件仓库的,你无法安装msi的,那是给windows用的。不同的linux发布版本有不同的自动安装命令,比如我的ubuntu就是sudo apt-get install python 之类的。你上网查一下。别在linux系统上装什么windows的软件,又不是wine下
‘贰’ 如何用python获取linux系统的网卡信息
1.下载源代码
2. 安装,过程如下。
$ tar –jxvf Python-2.5.2.tar.bz2
$ cd Python-2.5.2
$ ./configure
$ make
$ make install
3. 测试。
在命令行下输入python,出现python解释器即表示已经正确安装。
在suse10或rhel5(es5)下系统默认已经装了python但版本是2.4.x;本次安装后在shell中输入#python
会发现显示结果:
# python
Python 2.4.3 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “right”, “credits” or “license” for more information.
>>>
‘叁’ lunix安装python时无法configure
错误日志说了,See 'config.log' for more details,看下config.log,网络下再看看呀。
‘肆’ linux 安装python拓展包pexpect
哦。因为你是egg格式。所以需要安装一个setup tool,也有可能是ezsetup。这个在它的安装里有一个详细提示。
distuils.core是python的setup.py里引用的一个安装包。通常python安装分发包都要使用这个库。
从现在这个情况看。你的机器上的python似乎不是一个完整版本。
我以前在suse的linux上发现过这种问题。
你可以单独安装一个自己的python版本。这样linux原有的python与你安装的python相互不影响都可以使用。
‘伍’ 如何在linux系统中安装python
1.下载源代码 http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tar.bz2
2. 安装
$ tar –jxvf Python-2.5.2.tar.bz2
$ cd Python-2.5.2
$ ./configure
$ make
$ make install
3. 测试
在命令行下输入python,出现python解释器即表示已经正确安装。
在suse10或rhel5(es5)下系统默认已经装了python但版本是2.4.x;本次安装后在shell中输入
#python
会发现显示结果:
# python
Python 2.4.3 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “right”, “credits” or “license” for more information.
>>>
版本还是2.4.x的
解决办法:
#cd /usr/bin
#ll |grep python //查看该目录下python
#rm -rf python
#ln -s PREFIX/Python-2.5.2/python ./python //PREFIX为你解压python的目录
#python
# python
Python 2.5.2 (#1, Dec 11 2006, 11:38:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “right”, “credits” or “license” for more information.
>>>
OK!问题解决!
‘陆’ linux下安装东西时提示/usr/bin下缺少python2.5 怎么处理 我看了usr/bin下只有python2.4
是啊。自己安装后安装的目录不同,通常是将/usr/bin/python改名,然后用ln -s将你新安装的python的执行文件链接过去就要中以了。
python2.5?感觉你的操作系统有些古老。如果是suse之类的,就要小心些。好象它自带的python2.4有些不标准。 mac os也是不标准。
现在一般用python2.7。有更多的问题继续问。
‘柒’ python2.5怎么安装
Python2.5的安装方法:1.下载源代码 http://www.python.org/ftp/python/2.5.2/Python-2.5.2.tar.bz22. 安装 $ tar –jxvf Python-2.5.2.tar.bz2 $ cd Python-2.5.2 $ ./configure $ make $ make install3. 测试 在命令行下输入python,出现python解释器即表示已经正确安装。在suse10或rhel5(es5)下系统默认已经装了python但版本是2.4.x;本次安装后在shell中输入 #python 会发现显示结果: # python Python 2.4.3 (#1, Dec 11 2006, 11:38:52) [GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2 Type "help", "right", "credits" or "license" for more information. >>> 版本还是2.4.x的 解决办法: #cd /usr/bin #ll |grep python //查看该目录下python #rm -rf python #ln -s PREFIX/Python-2.5.2/python ./python //PREFIX为你解压python的目录 #python # python Python 2.5.2 (#1, Dec 11 2006, 11:38:52) [GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2 Type "help", "right", "credits" or "license" for more information. >>> OK!问题解决!文章出处: http://www.diybl.com/course/6_system/linux/Linuxjs/2008831/139078.html
‘捌’ 如何在suse linux 10.1上配置wxPython 2.6
wxPython是基于Python解释器调用wxWidgets的,所以它具有Python语言的简洁高效,又具有wxWidgets的本地化和跨平台。
想详细了解,就看下面网站:
Python:http://www.python.org/
WxWidgets:http://wxwidgets.org/
WxPython:http://www.wxpython.org/
想看究竟是什么,就跟着我配置环境看demo吧!
‘玖’ 如何在SUSE linux上安装numpy包(已经装好了python)
在命令行,切换到root用户,执行:
zypper in python-numpy