于2024年11月21日发布了 PHP 8.4.1 Released 版本于是就决定安装试试。
当前 Debian 12 自带源的 PHP 版本目前只有 8.2 ,于是就需要使用 Sury 源了。
apt-get update apt-get -y install lsb-release ca-certificates curl curl -sSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb dpkg -i /tmp/debsuryorg-archive-keyring.deb sh -c 'echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' apt-get update
这样就有了各个版本的PHP了。
apt install php8.4-common php8.4-cli
参考
Frequently Asked Questions
https://github.com/oerdnj/deb.sury.org/wiki/Frequently-Asked-Questions
https://packages.sury.org/php/README.txt
嫌麻烦就使用存储库安装了……
ChiuYut
2024年12月03日