How do I install .NET Core on OSX?

What commands are needed to install .NET Core on OSX?


These instructions come from the Microsoft site.

  1. Install HomeBrew:

(Paste into Terminal.)

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  1. Update homebrew:

    brew update
    
  2. Install OpenSSL:

Source

brew install openssl
ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/
  1. Finally install .NET core, download here:

    enter image description here