source

Ubuntu 16.04에 php-curl을 설치하는 방법

lovecheck 2023. 1. 2. 22:41
반응형

Ubuntu 16.04에 php-curl을 설치하는 방법

로 업그레이드됨Ubuntu 16.04설치 후 문제가 발생하였습니다.PHP5.

PHP-5를 다음과 같이 인스톨 했다.

sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php5.5   # for PHP 5.5

php-curl을 설치하려고 했지만 작동하지 않습니다.

sudo apt-get install php5-curl

오류: E: php5-curl 패키지를 찾을 수 없습니다.

Ubuntu 16.04 기본 PHP 버전은 7.0입니다.다른 버전을 사용하려면 PHP 버전에 따라 PHP 패키지를 설치해야 합니다.

  • PHP 7.4:sudo apt-get install php7.4-curl
  • PHP 7.3:sudo apt-get install php7.3-curl
  • PHP 7.2:sudo apt-get install php7.2-curl
  • PHP 7.1:sudo apt-get install php7.1-curl
  • PHP 7.0:sudo apt-get install php7.0-curl
  • PHP 5.6:sudo apt-get install php5.6-curl
  • PHP 5.5:sudo apt-get install php5.5-curl

이건 나한테 효과가 있었어.

sudo apt-get install php-curl

이것으로 충분합니다.

sudo apt-get install php5.6-curl

작업:

apt-get update

그 후:

apt-get install php5-curl
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt install php8.0-curl

Ubuntu 16.04 및 파생 모델에 cURL 7.49.0을 설치하려면

wget http://curl.haxx.se/download/curl-7.49.0.tar.gz
tar -xvf curl-7.49.0.tar.gz
cd curl-7.49.0/
./configure
make
sudo make install

Ubuntu 18.04 또는 PHP 7.2 사용자의 경우 다음을 수행할 수 있습니다.

apt-get install php7.2-curl

PHP 버전을 확인하려면 다음을 확인할 수 있습니다.php -vPHP 버전을 확인하고 올바른 컬 버전을 얻을 수 있습니다.

sudo apt-get install php5.6-curl

웹 브라우저를 재시작합니다.

모듈을 확인하려면php -m | grep curl

언급URL : https://stackoverflow.com/questions/38800606/how-to-install-php-curl-in-ubuntu-16-04

반응형