Debian 12 安装 Python 2

前言

在 Debian 12 中,由于 APT REPO 没有提供 Python 2,因此需要通过手动编译源码的方式来安装 Python 2。

准备工作

1
2
# 更新软件索引
sudo apt update
1
2
# 安装依赖包
sudo apt install -y libdb5.3-dev libjpeg-dev libaudio-dev libc6-dev
1
2
# 安装依赖包
sudo apt install -y build-essential zlib1g-dev libssl-dev libncurses5-dev libffi-dev libsqlite3-dev libreadline-dev libbz2-dev liblzma-dev

开始安装

1
2
3
4
5
# 下载文件
wegt https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz

# 解压文件
tar -xvf Python-2.7.18.tgz
1
2
3
4
5
6
7
8
9
10
11
# 进入目录
cd Python-2.7.18

# 生成构建文件
./configure --with-pydebug

# 编译
sudo make -j2

# 安装
sudo make altinstall

多版本管理

如果在 Debian 系统中安装了多个版本的 Python,或者默认版本是 Python 3,那么可以设置各个 Python 版本的优先级。

1
2
3
4
5
6
7
8
# 配置 Python 2 的优先级为 1
update-alternatives --install /usr/bin/python python /usr/local/bin/python2.7 1

# 配置 Python 3 的优先级为 2
update-alternatives --install /usr/bin/python python /usr/bin/python3 2

# 查看版本列表
update-alternatives --list python
1
2
3
4
5
# 配置默认的 Python 版本
update-alternatives --config python

# 查看 Python 版本
python --version

参考教程