centos 7.4安装python3.6_阿里云 CentOS7.4 安装 Python3.6的方法讲解

本文详细介绍了如何在阿里云 CentOS 7.4 上安装 Python 3.6,包括下载源码、解压、配置、编译、安装以及后续的环境配置,确保Python3.6成为默认版本,并解决相关依赖问题。
摘要由CSDN通过智能技术生成

1、到python官网 https://www.python.org 查找最新的原码,我使用的,Python-3.6.3

2、mkdir /home/soft

创建软件管理目录、

3、cd /home/soft/

进入soft目录,因为我下一步是下载python的源码

4、wget https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tgz

下载Python-3.6.3的源码到/home/soft/里,如果没有安装wget 请执行下面的命令,

yum -y install wget

安装wget

5、tar -xzvf Python-3.6.3.tgz -C /Python-3.6

解压到 /home/soft/Python-3.6

6、vim /home/soft/Python-3.6/Modules/Setup

安装ssl,如果要使用pip的话,最好安装ssl

#修改结果如下:

# Socket module helper for socket(2)

_socket socketmodule.c timemodule.c

# Socket module helper for SSL support; you must comment out the other

# socket line above, and possibly edit the SSL variable:

#SSL=/usr/local/ssl

_ssl _ssl.c \

-DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \

-L$(SSL)/lib -lssl -lcrypto

7、./configure --prefix=/usr/local/

我们打算把python3.6安装到目录 /usr/local/

源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装(make install)

8、make

9、make install

ython3.6程序的执行文件:/usr/local/bin/python3.6

python3.6应用程序目录:/usr/local/lib/python3.6

pip3的执行文件:/usr/local/bin/pip3.6

pyenv3的执行文件:/usr/local/bin/pyenv-3.6

更改/usr/bin/python链接

# cd/usr/bin

# mv python python.backup

# ln -s /usr/local/bin/python3.6 /usr/bin/python

# ln -s /usr/local/bin/python3.6 /usr/bin/python3

更改yum脚本的python依赖

# cd /usr/bin

# ls yum*

yum yum-config-manager yum-debug-restore yum-groups-manager

yum-builddep yum-debug-dump yumdownloader

更改以上文件头为

#!/usr/bin/python 改为 #!/usr/bin/python2

修改gnome-tweak-tool配置文件

# vi /usr/bin/gnome-tweak-tool

#!/usr/bin/python 改为 #!/usr/bin/python2

修改urlgrabber配置文件

# vi /usr/libexec/urlgrabber-ext-down

#!/usr/bin/python 改为 #!/usr/bin/python2

以上这篇阿里云 CentOS7.4 安装 Python3.6的方法讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

本文标题: 阿里云 CentOS7.4 安装 Python3.6的方法讲解

本文地址: http://www.cppcns.com/os/linux/218455.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值