1. 程式人生 > >ubuntu 18 安裝 .net core sdk

ubuntu 18 安裝 .net core sdk

方法一:官方推薦方式安裝

Register Microsoft key and feed

Before installing .NET, you'll need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine.

Open a command prompt and run the following commands:

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

Install .NET SDK

Update the products available for installation, then install the .NET SDK.

In your command prompt, run the following commands:

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

但是以上命令在執行最後一行和倒數第二行的時候總是報錯,因為網路問題沒有更新軟體包源。安裝不了。、。

方法二:去github下載SDK通用linux安裝包

在Downloads標籤中找到屬於自己版本的安裝包,然後下載。

安裝命令:

mkdir -p $HOME/dotnet && tar zxf dotnet-sdk-2.1.302-linux-x64.tar.gz -C $HOME/dotnet
export DOTNET_ROOT=$PATH:$HOME/dotnet 
export PATH=$PATH:$HOME/dotnet

然後輸入“dotnet”,回車,如果沒有出錯表示安裝完成

但上面的方法關閉終端後就失效了,要使其永久生效,需要把最後兩行加入到bash指令碼