Ubuntu 24.04 對 Python 2.7 的維護已經停止了,因此 Python 2.7 已從 Ubuntu 24.04 軟體包移除。如果想要安裝 Python 2.7,需要我們自己從 Python 官網下載 Python 原始碼並編譯。
獲取原始碼:
# 下載原始碼壓縮包
wget https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz
# 解壓
tar -xJf Python-2.7.18.tar.xz
編譯:
cd Python-2.7.18
# 設定編譯選項並寫入 Makefile
./configure
# 編譯
make
安裝:
su root
make install
參考:Ubuntu 24.04 LTS安裝Python2失敗解決