Arch-Linux

如何在 Arch Linux 上安裝 Dot Net Core

  • November 24, 2018

我正在使用 Apricity OS(基於 Arch Linux)。我想安裝點網核心。pacman 安裝的命令是什麼。

Archlinux 使用者儲存庫 (AUR) 中有幾個與 DotNetCore 相關的軟體包。正如 mpromonet 的回答中所述,其中之一是 dotnet-cli。但是,無需安裝 yaourt(或任何其他 AUR 助手)即可從 AUR 安裝軟體包。

我知道這對於 OP 來說可能為時已晚,但為了完整起見,這些是安裝僅在 Archlinux(或其衍生產品)中的 AUR 中的包的步驟,無需其他工具:

1) Make sure you have the base-devel group installed
2) Go to the website https://aur.archlinux.org/packages/ and search the package
3) On the page for that package, klick "Download snapshot" and save the package to your computer
4) Extract the package on your computer: tar xvf <package_name>.tar.gz
5) cd <package_name>
6) makepkg
7) If the build fails, saying that a dependency is not satisfied, download and install that dependency first: try pacman -S <dependency> or else follow these steps
8) When the build succeeded, install the package:
  sudo pacman -U <pkgname>-<version_number>.tar.xz

另請參閱 Archlinux wiki 中的 AUR條目,以獲得對 AUR的更深入描述。

.NET Core 的包現在可以從官方社區儲存庫中獲得。

如果您只想執行 .NET Core 應用程序,則需要該dotnet-runtime包。

pacman -S dotnet-runtime

如果您還想自己建構 .NET Core 應用程序,則需要該dotnet-sdk包。

pacman -S dotnet-sdk

引用自:https://unix.stackexchange.com/questions/304765