web-dev-qa-db-ja.com

SQL Serverをインストールすると、満たされていない依存関係libc ++ 1とlibjemalloc1が表示されますが、インストールできません

これが出力です、

$ Sudo apt install -y mssql-server
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:
 mssql-server : Depends: libjemalloc1 but it is not installable
                Depends: libc++1 but it is not installable
3
Evan Carroll

これは、これらのパッケージが両方ともUbuntu Universeにあるためです。使用できるリポジトリを有効にするには、

Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

ユニバースパッケージは、CanonicalとUbuntuチームによって正式にサポートされているではなく、コミュニティによってサポートされていることに注意してください。詳細については、 セキュリティに関するFAQ を参照してください

5
Evan Carroll