Installing .NET Core on Mac

You can install .NET Core on your MacOs quite easily. You can find instructions on official Microsoft page. Or just make these steps:

1. Install openssl library with either homebrew or macports
Homebrew:

macports:

In any case make sure you are under admin and check your path to installed openssl lib (/opt/local/lib/ or /usr/local/opt/openssl/lib/). It may differs depending on your configs.

2. Download and install official .NET Core installer.

3. Make sure everything went well by typing in terminal: dotnet --info

4. Try to create and run a project:

You should see "Hello World!" in Terminal.

Comment is closed.