第一步安装,先下载vim模块儿,下载wget
第二步:
打开终端,输入:wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0b4.tgz
下载完毕后 输入解压命令:tar –zxvf Python-3.5.0b4.tgz
切换到解压的目录:cd Python*
接下来就是安装:
./configure
make
make install
然后查看一下就知道了:
输入python如果出现下面的提示:
Python 3.5.0 (#1, Aug 06 2015, 14:04:52)
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type “help”, “copyright”, “credits” or “license” for more information.
就说明成功了,因为linux系统可能不一样,第二行有可能不同哈。
注:如果出现(make: *** 没有指明目标并且找不到 makefile。 停止。)
可能情况如下:
一、Linux下各种依赖都已经安装,是因为没有找到makefile。
如果是自己写的,确定在当前目录下;如果是源码安装,先运行./configure,生成makefile,再执行make,即可正常运行。
二、如果没有安装其他依赖先安装依赖
yum install gcc gcc-c++ autoconf automake
yun -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel (安装依赖zlib、openssl和pcre)
三. 测试 在命令行下输入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”, “copyright”, “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”, “copyright”, “credits” or “license” ...