Linux 平台安装 Python 3.8

Posted 只有时间是永恒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 平台安装 Python 3.8相关的知识,希望对你有一定的参考价值。

Linux 平台安装 Python 3.8

该博客中使⽤的系统为 CentOS 7 Linux 发⾏版 系统版本详情: Linux centos7-shanghai 3.10.0-1160.25.1.el7.x86_64 #1 SMP Wed Apr 28 21:49:45 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

⚠ 为了确保系统依赖的完整性,请先执⾏如下命令:

[root@centos7-shanghai ~]# yum install -y gcc gcc-c++ zlib zlib-devel libffilibffi-devel openssl openssl-devel pcre pcre-devel yum-utils vim wget tree htop

1 获取 Python 3.8 源码包

点击此处进⼊ Python 官⽅⽹站,然后如图所示操作

2 解压缩源码包

[root@centos7-shanghai ~]# tar zxvf Python-3.8.10.tgz

3 切换到解压之后的路径

[root@centos7-shanghai ~]# cd Python-3.8.10

4 配置安装参数

[root@centos7-shanghai Python-3.8.10]# ./configure --prefix=/usr/local/python38/

5 编译安装

[root@centos7-shanghai Python-3.8.10]# make && make install

6 配置系统环境变量

[root@centos7-shanghai Python-3.8.10]# vim /etc/profile.d/python38.sh

python38.sh ⽂件内容如下:

export PATH="/usr/local/python38/bin:${PATH}"

7 使环境变量⽣效

⽅式⼀:退出终端之后,重新登录。

⽅式⼆(⽴刻⽣效):执⾏如下命令:

[root@centos7-shanghai ~]# source /etc/profile

8 测试 Python 3.8

进⼊ Python 交互式环境。

[root@centos7-shanghai ~]# python3

9 安装第三⽅模块

[root@centos7-shanghai ~]# python3 -m pip install certifi wheel

10 查看已安装的第三⽅模块

[root@centos7-shanghai ~]# python3 -m pip list

11 总结

博客⾄此,Python3.8 就已经成功且正确的安装在 CentOS 7 系统中了,恭喜你

以上是关于Linux 平台安装 Python 3.8的主要内容,如果未能解决你的问题,请参考以下文章

linux 系统 如何 安装 python (python 3.8)

VS远程调试(Visual Studio)远程连接到linux cmake(跨平台开发)(适用于VS2019,且远程目标平台cmake版本大于等于3.8)

在 Google Colaboratory 中安装 Python 3.8 内核

AWS Elastic Beanstalk Python (3.8) 平台:除了使用 `requirements.txt` 之外,为带有 `--no-deps` 标志的 Python 包运行额外的 p

Windows 系统安装 Python 3.8 详解

VS Code 安装与使用,Python 顶级 IDE 编程指南!