• Register the Microsoft key
  • register the product repository
  • Install required dependencies

参考网址:https://docs.microsoft.com/zh-cn/dotnet/core/install/linux-package-manager-ubuntu-1604

 

wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb

 

Install the .NET Core SDK

sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-sdk-2.2

Install the ASP.NET Core runtime

sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install aspnetcore-runtime-2.2

Install the ASP.NET Core runtime

sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-runtime-2.2

检查安装信息

dotnet --info

 

运行dotnet程序

dotnet  xxx.dll文件

  

  

 

相关文章:

  • 2021-07-15
  • 2021-12-18
  • 2022-12-23
  • 2021-11-30
  • 2021-04-07
  • 2021-12-25
  • 2021-12-05
猜你喜欢
  • 2021-06-29
  • 2021-11-14
  • 2018-04-27
  • 2021-11-29
  • 2022-03-09
  • 2022-01-20
  • 2021-11-24
相关资源
相似解决方案