반응형
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 -v
PHP 버전을 확인하고 올바른 컬 버전을 얻을 수 있습니다.
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
반응형
'source' 카테고리의 다른 글
OS X에서 MySQL 루트 사용자 암호 설정 (0) | 2023.01.02 |
---|---|
PHP의 비동기 셸 Exec (0) | 2023.01.02 |
Vue3 글로벌 컴포넌트 액세스 (0) | 2023.01.02 |
DB에서 중복된 Wordpress 게시물을 삭제하는 방법 (0) | 2023.01.02 |
목록에서 요소의 모든 항목을 찾는 방법 (0) | 2023.01.02 |