Get the SDK

Search for “download .net core” and follow the instructions on Microsoft’s download page for your platform. After the SDK has finished installing, open up the Terminal (or PowerShell on Windows) and use the dotnet command line tool (also called a CLI) to make sure everything is working:

  1. dotnet --version
  2. 2.0.0

You can get more information about your platform with the --info flag:

  1. dotnet --info
  2. .NET Command Line Tools (2.0.0)
  3. Product Information:
  4. Version: 2.0.0
  5. Commit SHA-1 hash: cdcd1928c9
  6. Runtime Environment:
  7. OS Name: Mac OS X
  8. OS Version: 10.12
  9. (more details...)

If you see output like the above, you’re ready to go!