Centos7下Python3的安装

时间:2020-11-28 06:57:45

Centos7下Python3的安装

解压压缩包

$ tar -zxvf Python-3.5.1.tgz

进入解压后的文件夹

$ cd /home/hadoop/Python-3.5.1
$ ./configure

编译

$ make

安装

$ sudo make install

创建指向3.5.1的软连接

$ sudo ln -s /usr/local/bin/python3 /usr/bin/python3

注:这里就不替换系统本身带有的python2.7的内容,而是直接使用python3作为使用自安装内容的方法

测试

$ python3
Python 3.5.1 (default, Dec 23 2015, 14:42:47)
[GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>