我在家园安装php7.0-curl
时遇到问题。
在我的Laravel家园:
sudo apt-get install php7.0-curl
它返回:
E:找不到包php7.0-curl
E:找不到与正则表达式匹配的软件包«php7.0-curl»
注意:如果我只在我的终端中运行:curl --help
它正在运行。
有关信息,我的电脑可以运行:
Distributor ID: Ubuntu
Description:Ubuntu 15.04
Release: 15.04
Codename: vivid
答案 0 :(得分:0)
包php7.0-curl仅适用于Ubuntu 16.04 LTS(xenial)和Ubuntu 16.10(yakkety,即将发布)。
你当前版本的Ubuntu,15.04(生动)有reached end of life the February 4, 2016
您可以尝试从其中一个发行版导入包并手动解决依赖关系,但安装Ubuntu 16.04 LTS会更安全。
顺便说一句,如果你想在Laravel Homestead中安装php7.0-curl,你需要确保在Laravel Homestead内部运行的ubuntu版本大于或等于16.04。
答案 1 :(得分:0)
尝试一下:
sudo add-apt-repository ppa:ondrej/php-7.0
sudo apt-get install software-properties-common -y
sudo apt-get update
sudo apt-cache search php7.0-curl
如果在php7.0-curl中找到它,则使用
安装sudo apt-get install php7.0-curl
希望有帮助。