如何在Ubuntu操作系统上安装php7.0-mcrypt包

时间:2018-01-27 06:28:03

标签: ubuntu

The following packages have unmet dependencies: php7.0-mcrypt : Depends: libmcrypt4 but it is not installable E: Unable to correct problems, you have held broken

这个命令运行给我这个错误

>>> a = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 4]])
>>> df = pd.DataFrame(a.T)
>>> print(*df.nunique())
2 2 3

我不知道我能做些什么。请提出解决此问题的建议 并提前感谢您的建议。

1 个答案:

答案 0 :(得分:1)

sudo apt install libmcrypt4 php7.0-mcrypt

或者你可以这样做 sudo apt -f install php7.0-mcrypt

给出-f作为参数将安装所有未满足的依赖项,然后按照安装你给出的包。  reference link