sql server 安装错误

sql server 安装错误

当我尝试安装 SQL Server 时,出现此错误:

The following packages have unmet dependencies:
 mssql-server : Depends: libcurl3 but it is not going to be installed
                Depends: openssl (<= 1.1.0)
E: Unable to correct problems, you have held broken packages.

我该如何修复它?

答案1

libcurl3如果尚未安装和软件包,请尝试安装openssl。如果不起作用,请尝试以下操作:

  • apt autoclean

  • apt -f install

  • dpkg --configure -a

  • apt -f install

然后尝试mssql-server再次安装

相关内容