如何在 Windows 的 Linux 子系统 (WSL) 中的 Ubuntu 中将 PHP 7.2 升级到 7.4

如何在 Windows 的 Linux 子系统 (WSL) 中的 Ubuntu 中将 PHP 7.2 升级到 7.4

我需要在 Windows 10 中的 WSL 下的 Ubuntu 中将默认的 PHP 版本 7.2 升级到 7.4。我该怎么做?

答案1

经过两天的研究。我将我的 php 版本从 7.2 升级到了 7.4。步骤如下:

  1. 更新windows10中ubuntu的版本(Linux子系统)。
  2. 将行添加
    deb http://hu.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
    到文件/etc/apt/sources.list
  3. sudo apt update && sudo apt dist-upgrade
  4. sudo apt-get install software-properties-common
  5. sudo add-apt-repository ppa:ondrej/php
  6. sudo apt-get install php7.4

php -v 7.安装php7.4模块(扩展)

sudo apt-get install libapache2-mod-php7.4 php7.4-fpm libapache2-mod-fcgid php7.4-curl php7.4-dev php7.4-gd php7.4-mbstring php7.4-zip php7.4-mysql php7.4-xml

sudo a2enmod php7.4

service apache2 restart

相关内容