user10105200
user10105200

Reputation:

How do I execute Mono IDE on Windows to start programming?

So I'm trying to find some executable file that matches Mono IDE GUI for Windows and the closest file is monow.exe, but after execution it raises an ERR like "program won't start up, libmonoboehm-2.0.dll is missing". To be honest, all I have after installing https://download.mono-project.com/archive/5.12.0/windows-installer/mono-5.12.0.301-gtksharp-2.12.45-win32-0.msi is a bunch of files under folder %program_files%\Mono\ and a link in W7 menu to a console .exe file. What do I have to do to run the Mono GUI? I've been searching that missing DDL file over the internet but no luck. Any help or guideness is really appreciated as I don't have any experience with this IDE. Will be my first time, LOL!

Upvotes: 0

Views: 5080

Answers (1)

Courtney The coder
Courtney The coder

Reputation: 147

You installed the mono runtime not the mono development tools. also "MonoDevelop for Windows is available from source only" as stated here https://www.monodevelop.com/download/

so you will need a working toolchain already to use the monodevelop ide. There is however a precompiled binary linked on the issue page https://github.com/mono/monodevelop/issues/4653

You can also build your own with these instuctions https://www.monodevelop.com/developers/building-monodevelop/

Upvotes: 0

Related Questions