I've installed dot net core on mac, but didn't find “dotnet” command

烂漫一生 提交于 2019-12-23 07:47:16

问题


Today I've just downloaded "dotnet-dev-osx-x64.1.0.0-preview1-002702.pkg" and installed it. After that I tried "dotnet" command in my terminal, nothing printed.

I also tried Spotlight searching, seems nothing found.

Where is this package installed at all?


回答1:


The key thing is you need to locate the file dotnet.exe, then create a new Symbolic link to create a new shortcut link to that dotnet.exe file in the usr/local/bin folder. Sometimes you see this error "/usr/local/bin//dotnet: File exists", it means the link already exists in that folder (and it's normally a faulty one), to fix that you need to go to that folder and delete the link.

After you have located the dotnet.exe file, in my case it's in the '/usr/local/share/dotnet/dotnet' folder. Create a new symbolic link for it using this command:

ln -s /usr/local/share/dotnet/dotnet /usr/local/bin/

Done! You can run the "dotnet" command now...Hope it helps



来源:https://stackoverflow.com/questions/41693683/ive-installed-dot-net-core-on-mac-but-didnt-find-dotnet-command

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!