-
Notifications
You must be signed in to change notification settings - Fork 636
Dynamo on Linux, Mac
Peter Boyer edited this page Apr 24, 2015
·
17 revisions
Dynamo's core can be built and run on OS X and Linux using the Mono runtime. Not all parts of Dynamo are cross-platform - notably Dynamo's WPF UI can not be run on OS X or Linux.
Mono is required to build and run Dynamo on non-windows platforms. The current version of Mono we're using is Mono JIT compiler version 3.2.8. Newer versions should work as well.
# sudo apt-get install mono-complete
Install homebrew from brew.sh
# brew install mono
On any platform:
# xbuild src/Dynamo.Mono.sln
Make Program.cs
and put this inside:
using Dynamo.Core;
public class Program {
public static void Main(){
var model = DynamoModel.Start();
}
}
From the command line:
# mcs -r:DynamoCore.dll Program.cs
Run:
# mono Program.exe
Looking for help with using the Dynamo application? Try dynamobim.org.
- Dynamo 2.0 Language Changes Explained
- How Replication and Replication Guide work: Part 1
- How Replication and Replication Guide work: Part 2
- How Replication and Replication Guide work: Part 3