美文网首页
Ubuntu16.04.3 LTS 安装 .Net Core

Ubuntu16.04.3 LTS 安装 .Net Core

作者: 纯boy | 来源:发表于2018-10-21 21:23 被阅读0次

    Ubuntu 安装 .Net Core

    由于.NetCore 支持跨平台了,所以 .Net Core 应用 可以在Linux上运行,但前提是安装好.Net Core 的环境。 我这次用的是阿里云的服务器做的练习 系统版本 Ubuntu 16.04.3 LTS。

    关于服务器登入,参考 远程登入服务器

    注册微软产品key为可信任的

    $ curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
    
    将请求到的内容重定向写入到microsoft.gpg文件

    将下载的key移动到特定文件夹下

    $ sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
    

    API支持Https

    $ sudo apt-get install apt-transport-https
    $ sudo apt-get update
    
    我这里之前已经有安装

    安装 .Net Core

    sudo apt-get install dotnet-sdk-2.1.3
    
    安装2.1.3,也可自行指定

    检查是否安装成功

    $ dotnet --version
    
    显示安装的版本号

    至此,Linux上的.Net Core环境就算是安装好了。接下来就可以新建项目运行.Core应用了。

    相关文章

      网友评论

          本文标题:Ubuntu16.04.3 LTS 安装 .Net Core

          本文链接:https://www.haomeiwen.com/subject/njsizftx.html