CentOS 7.1下安装dotnet core

本文发布时间: 2019-Mar-22
.NET CORE的官方(http://dotnet.github.io/getting-started/)只提供了Windows, Ubuntu14.04, 及Docker(也是基于Ubuntu14.04做的Image). 但鉴于微软已经把RedHat做为参考平台而且用Ubuntu14.04做Server我心里还是没底的. 所以想着在CentOS下配置.NET CORE的环境开始我也是走的编译源码的路线,然后....搞编译环境实在是不是我强项,难道木有简单无脑的办法,我是个懒人忽然的灵感是ubuntu,mac下打印的信息是.NET Command Line Tools (1.0.0-beta-001598)于是在github在找这个项目(https://github.com/dotnet/cli), 找到这个项目后一看README,宾果,我想要的包找到了.可以下载最新的包:https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-centos-x64.latest.tar.gz但是因为官网上ubuntu及docker等等推荐的都是1.0.0.001598这个版本号,尴尬癌... 好吧, 试了一下https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/1.0.0.001598/dotnet-centos-x64.1.0.0.001598.tar.gz成功了.于是可以开始了.1. virtualbox 安装最小化的centos7.1, 安装wget2. 安装.NET CORE  1).#:cd ~  2).#:mkdir dotnet  3).#:cd dotnet  2). #:wgethttps://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/1.0.0.001598/dotnet-centos-x64.1.0.0.001598.tar.gz  3). #:tar -zxfdotnet-centos-x64.1.0.0.001598.tar.gz3. 测试、运行:接上面步骤  1). #:cd bin  2). #:./dotnet提示错误:Failed to load /root/dotnet/bin/libcoreclr.so, error: libunwind.so.8: cannot open shared object file: No such file or directory  fix: yum installlibunwind  3). #:./dotnetFailed to initialize CoreCLR, HRESULT: 0x80131500  fix: yum install icu (别问我为什么知道,嘿嘿)  4). #:./dotnet4. 配置环境变量  1).#:vi /etc/profile  在最后面添加PATH=~/dotnet/bin:$PATHexport PATH  2). #:source /etc/profile现在可以和ubuntu, mac, docker下一样使用.net core编译、运行,发布你的项目啦玩.NET CORE, 现在会遇到各种各样的问题如MySql的provider, Redis的Provider... 在没有官方版的情况下只能自己改或完全重写了


(以上内容不代表本站观点。)
---------------------------------
本网站以及域名有仲裁协议。
本網站以及域名有仲裁協議。

2024-Mar-04 02:09pm
栏目列表