Reputation: 13109
I just installed Mono 3.10.0 on OS X using the package from their website. Before the installation I had installed 3.6.1.
After the installation of 3.10.0 mono --version
still shows 3.6.1
.
which mono
returns /usr/local/bin/mono
.
In /usr/local/bin/
, mono refs to:
mono -> ../Cellar/kmono/3.6.1-10002/bin/mono
.
Where can I find and activate my recently installed version 3.10.0?
~/Library/Frameworks/mono
does not exist.
Upvotes: 4
Views: 2423
Reputation: 19345
You have a custom mono in your /usr/local, which takes precedence over the one you just installed. You need to remove your custom one.
Your recently installed mono can be found in /usr (try /usr/bin/mono --version
, and it will print 3.10)
Upvotes: 2