How to install DNX on OSX using Homebrew?

Hello. With the big renaming of k to dnx, I have no idea how to install tools on my mac?

documentation on dev branches has not been updated to reflect a large rename

https://github.com/aspnet/Home/tree/dev

+8
asp.net-core dnx
Apr 01 '15 at 7:10
source share
1 answer

The homebrew-k file has recently been updated to support dnvm. Here are the instructions:

  • Install Homebrew if it is not already installed.
  • Run the brew tap aspnet/k command to touch the ASP.NET 5 git repositories. If you have already postulated a repo for previous releases, run brew untap aspnet/k to remove the old commands, and click again to get updated brew scripts
  • Run the brew install dnvm to install dnvm. This will automatically install the latest DNX package from https://www.nuget.org/api/v2 feed
  • Run the source dnvm.sh on your terminal if your terminal cannot understand dnvm

EDIT

Homebrew-K has been renamed Homebrew-dnx, so now you should use

 brew tap aspnet/dnx 

If you pressed aspnet/k , it would probably be nice to expand it ( brew untap aspnet/k ) and update brew ( brew update )

+15
Apr 01 '15 at 19:45
source share



All Articles