微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

安装php5-mcrypt时出错

就在今天,我注册了Google Cloud Compute Engine.我做了一切,但后来我在安装PHP5-mcrypt扩展时遇到了错误.
错误
root@instance-2:~# sudo apt-get install PHP5-mcrypt
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages Could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 PHP5-mcrypt : Depends: PHPapi-20121212
               Depends: PHP5-common (= 5.5.24+dfsg-1+deb.sury.org~vivid+1) but 5.6.4+dfsg-4ubuntu6 is to be installed
E: Unable to correct problems,you have held broken packages.

我到处搜索,然后我来到这里.请帮忙.

sudo service apache2 restar
apt-get install PHP5-common

或者,如果您不需要保持配置:

apt-get purge PHP5-common
apt-get install PHP5-common

你从apt-mark showhold获得任何输出吗?

如果它无法解决您的问题,您应该尝试使用aptitude进行安装:

sudo apt-get install aptitude
sudo aptitude install PHP5-mcrypt

最后重新安装服务器

sudo service apache2 restart

原文地址:https://www.jb51.cc/php/136670.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐