【发布时间】:2019-03-15 04:36:42
【问题描述】:
在学习了有关如何在 linux mint 19 上安装 dotnet core 的 Microsoft 教程之后,我被困住了:
sudo apt-get install dotnet-sdk-2.1.4
我收到提示它需要安装 dotnet-runtime-2.0.5,所以我执行了:
sudo apt-get install dotnet-runtime-2.0.5
我得到了
The following packages have unmet dependencies:
dotnet-runtime-2.0.5 : Depends: libicu55 but it is not installable
所以问题是我无法安装这个 libicu55,因为它不存在。 我该如何解决这个问题?
【问题讨论】:
-
Wikipedia 表示 Linux Mint 19 与 Ubuntu 18.04 兼容。所以你可以从那里拿包裹吗? (或者也许你可以使用不同的 libicu,并强制 apt-get 忽略依赖项?我不知道 Linux Mint。)
-
微软打算在一小部分 Linux 操作系统 github.com/dotnet/core/blob/master/release-notes/2.1/… 上限制 .NET Core 2.0/2.1,因此您应该使用受支持的 Mint 版本(17 或 18)。
-
在 mint 19 中,我使用 'sudo apt-get install dotnet-sdk-2.2' 安装了 dotnet。没有未满足的依赖关系。
标签: .net .net-core linux-mint