ubuntu上的安装.netcore2.1
Posted personblog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu上的安装.netcore2.1相关的知识,希望对你有一定的参考价值。
- .net core 在ubuntu上安装比较容易,依次执行正面语句即可
sudo apt-get install curl
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
sudo sh -c ‘echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-artful-prod artful main" > /etc/apt/sources.list.d/dotnetdev.list‘
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-sdk-2.1
- 安装成功后,可以查看.netcore版本信息
dotnet --info
以上是关于ubuntu上的安装.netcore2.1的主要内容,如果未能解决你的问题,请参考以下文章
.NetCore2.1 WebAPI 根据swagger.json自动生成客户端代码
markdown 在Intel Nuc上设置Ubuntu Web服务器,步骤和代码片段
python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。