19

I recently installed Xamarin Studio, and the next time I went to run brew doctor, I got this warning:

Warning: /Library/Frameworks/Mono.framework detected This can be picked up by CMake's build system and likely cause the build to fail. You may need to move this file out of the way to compile CMake. 

So I moved Mono.framework out of the way to my desktop and that fixed the problem, but when I went to open Xamarin Studio, it said:

Could not launch Xamarin Studio This application requires the Mono framework. Please download and install the latest version of Mono. 

So then I installed mono with Homebrew, but Xamarin Studio still has the same message when opening.

How can I get Xamarin Studio to use Homebrew's version of Mono?

0

2 Answers 2

12

I solved this by installing mono-mdk instead of mono from homebrew.

brew cask install mono-mdk 

You can also modify your PATH to use mono-mdk's binary:

export PATH=/Library/Frameworks/Mono.framework/Versions/Current/Commands:$PATH 
Sign up to request clarification or add additional context in comments.

Comments

3

You can and should leave Mono.framework where you found it in /Library/Frameworks.

If you later discover that you need to build CMake yourself (which is unlikely; Homebrew now typically installs CMake as a pre-compiled "bottle") and you actually encounter an error while trying to rebuild it, then you should move Mono.framework out of the way temporarily, until the CMake build has finished.

2 Comments

But if I leave Mono.framework where it is, homebrew complains when I run brew doctor.
That's okay. brew doctor output is advisory. The doctor now prints the following message: "Please note that these warnings are just used to help the Homebrew maintainers with debugging if you file an issue. If everything you use Homebrew for is working fine: please don't worry and just ignore them. Thanks!"

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.