前言
在 Debian 12 中,由于 APT REPO 没有提供 Python 2,因此需要通过手动编译源码的方式来安装 Python 2。
准备工作
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
| update-alternatives --install /usr/bin/python python /usr/local/bin/python2.7 1
update-alternatives --install /usr/bin/python python /usr/bin/python3 2
update-alternatives --list python
|
1 2 3 4 5
| update-alternatives --config python
python --version
|
参考教程
预览: