Installation on macOS
‘On macOS, how do I install Morpheus?’
Install Homebrew
Beginning with Morpheus version 2.2.6, Homebrew is required for installation on macOS. Homebrew is a free and open-source package manager for macOS (and Linux) that lets you easily install Morpheus, takes care of all dependencies needed for the simulator and the GUI and keeps everything up-to-date.
If Homebrew is not installed on your system yet, you can easily do so by pasting this line into Terminal.app and pressing Enter
:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Install Morpheus
If Homebrew is present on your system, simply install the latest version of Morpheus and Gnuplot (required for generating plots with Morpheus) from the Homebrew Core Tap by typing:
brew install morpheus gnuplot
And follow possibly emerging instructions from Homebrew.
Add Morpheus.app
to the App Folder
To also be able to conveniently open Morpheus.app
from the ‘Applications’ folder, enter:
ln -sf $(brew --prefix)/opt/morpheus/Morpheus.app /Applications
This will create a Morpheus.app
link in your Mac’s app folder, which you can then simply double-click or drag and drop into your Dock.
/opt/homebrew/opt/morpheus
(ARM) or /usr/local
(Intel) (according to the so-called Homebrew prefix).
The link created in this way in the app folder will work regardless of the Morpheus release and therefore does not have to be recreated for future updates.
Alternatively, you can start Morpheus once in the terminal with
morpheus-gui
and drag the app icon in the Dock to your apps on the left, which will create a permanent icon. Note, however, that with this variant the shortcut becomes invalid with every new Morpheus release, as it points to a specific release version and therefore a new shortcut must be created each time.
Open Morpheus
Start morpheus from the command line by typing:
morpheus-gui
Or if set up, via the Morpheus.app
file under /Applications
.
Update Morpheus
Check for updates and install the latest version of Morpheus with:
brew upgrade morpheus
Or upgrade all Homebrew packages including Morpheus:
brew upgrade
If you just want to check if there is a Morpheus release available without touching your current Morpheus installation, type:
brew update
brew outdated
Uninstall Morpheus
Uninstall Morpheus with the command:
brew uninstall morpheus
If existing, delete the link Morpheus.app
in /Applications
manually.
Install Other Morpheus Versions
Special Morpheus versions, such as builds with configurable dependencies, betas, and release branch builds, are not included in the standard Homebrew Core Tap. There are several Morpheus Taps, through which the Morpheus.Lab team provides installation routines and updates for such variants.
With the standard method using the original Tap homebrew-core
, pre-compiled binary packages called ‘Bottles’ are available for most systems, which are automatically downloaded and speed up the installation process considerably (in some cases down to a few seconds).
However, Bottles are not available for the special Morpheus versions described below. Depending on your system (hardware model, operating system, performance) the installation may take several minutes.
Stable Versions from Our Own Tap
We offer stable releases in our own morpheus
Tap alongside the original homebrew-core
Tap. Depending on the release, this variant may contain additional version-specific build options, which are always found on the respective download page, if available.
The morpheus
Homebrew Tap can be added with:
brew tap morpheus-lab/morpheus
All Taps can coexist, but if you want to get the identically named morpheus
build from our Morpheus.Lab Tap, you must explicitly specify the Tap to build it:
brew install morpheus-lab/morpheus/morpheus
Beta and Development Versions
Also, there is the possibility to install further Morpheus versions that are primarily intended for testing and development purposes:
morpheus-beta
: all tagged versions such as betas and release candidates,morpheus-release
: current development state of the next Morpheus release.
To be offered these versions, the morpheus-versions
Homebrew Tap must first be added:
brew tap morpheus-lab/morpheus-versions
morpheus-beta
also includes the stable versions, providing it is the latest version available at the moment of the installation or upgrade:
brew install morpheus-beta
morpheus-release
, on the other hand, reflects the current state of the source code and is subject to more frequent changes, some of which have not yet been thoroughly tested:
export HOMEBREW_NO_INSTALL_FROM_API=1
brew install --HEAD morpheus-release
HOMEBREW_NO_INSTALL_FROM_API
variable and pass the --HEAD
flag here to install the latest head revision of Morpheus' Git development branch.
Since it is not possible to determine whether an update is available for a development version due to the lack of a version number, to upgrade, instead of brew upgrade
, use the command
export HOMEBREW_NO_INSTALL_FROM_API=1
brew uninstall morpheus-release && brew install --HEAD morpheus-release
to reinstall morpheus-release
using the latest available source code revision.
Previous Releases
With the Morpheus 2.2.6 release, we introduced the Homebrew package manager for installation on macOS. Starting with this version, it is also possible to conveniently install and run different Morpheus releases in parallel with Homebrew.
Since previous Morpheus releases are not included in the standard Morpheus Homebrew Tap (morpheus-lab/morpheus
), these versions require additional installation of the morpheus-versions
Tap:
brew tap morpheus-lab/morpheus-versions
The desired Morpheus version is denoted by the suffix @<MORPHEUS-RELEASE>
:
brew install morpheus@<MORPHEUS-RELEASE>
Switch between the installed versions with:
brew link --overwrite morpheus(@<MORPHEUS-RELEASE>)
If you now e.g. click on Morpheus.app
or type morpheus-gui
, the respective release will be opened.
For example, you could switch back and forth between the latest release (morpheus
) and the version 2.2.6 (morpheus@2.2.6
) with the commands:
brew link --overwrite morpheus
brew link --overwrite morpheus@2.2.6
For more information, see also the following section ‘Switching between Versions’ in this FAQ.
Switching between Versions
If you have several versions of Morpheus installed in parallel via Homebrew, you must tell Homebrew which installation to default to when starting the GUI with morpheus-gui
, the simulator via the command-line interface (CLI) with morpheus
or when opening Morpheus.app
.
If, for example, you have installed the stable version of Morpheus with brew install morpheus
and in parallel also the beta version with brew install morpheus-beta
, you have to tell Homebrew with
brew link --overwrite morpheus-beta
before opening Morpheus that morpheus-beta
and not morpheus
should be loaded. Simply switch back and forth with the command brew link --overwrite <MORPHEUS-VERSION>
and then launch the pre-selected Morpheus installation.
Use the brew search
command to get an overview of available Morpheus versions. All versions installed on your system are marked with a tick:
➜ ~ brew search morpheus
==> Formulae
morpheus ✔ morpheus-beta ✔
==> Casks
morpheus-beta morpheus morpheus-beta220rc1 morpheus201 morpheus220 morpheus223 morpheus2251
macmorpheus morpheus-beta220b3 morpheus121 morpheus210 morpheus222 morpheus224 morpheus2252
➜ ~
Retrieve details about a specific Morpheus version with the brew info
command:
➜ ~ brew info morpheus
Warning: Treating morpheus as a formula. For the cask, use homebrew/cask/morpheus
morpheus-lab/morpheus/morpheus: stable 2.2.6 (bottled)
Modelling environment for multi-cellular systems biology
https://morpheus.gitlab.io/
/opt/homebrew/Cellar/morpheus/2.2.6 (15 files, 13.8MB) *
Poured from bottle on 2021-11-25 at 23:51:17
From: https://github.com/morpheus-lab/homebrew-morpheus/blob/HEAD/Formula/morpheus.rb
License: BSD-3-Clause
==> Dependencies
Build: boost ✔, cmake ✔, doxygen ✔
Required: ffmpeg ✔, gnuplot ✔, graphviz ✔, libomp ✔, libtiff ✔, qt@5 ✔
==> Caveats
To start the Morpheus GUI, type the following command:
morpheus-gui
Or add Morpheus to your Applications folder with:
ln -sf /opt/homebrew/opt/morpheus/Morpheus.app /Applications
➜ ~
Morpheus on macOS 10.15 ‘Catalina’
The external Homebrew project used by Morpheus to deliver up-to-date Morpheus releases to the users has stopped supporting macOS 10.15 ‘Catalina’ (first introduced by Apple in 2019) in the fall of 2022. Since then, a user with macOS 10.15 ‘Catalina’ doesn’t get precompiled packages, but has to compile all dependencies of Morpheus individually, which can be very tedious and time-consuming.
Nevertheless, we offer two alternative options to install Morpheus on macOS 10.15 ‘Catalina’: via a Homebrew rewind (recommended) or via a DMG file.
Homebrew Rewind (Recommended)
As of now, although not officially supported by Homebrew, older versions of precompiled Morpheus dependencies (‘bottles’) are still available directly from Homebrew. You can get them by rolling back the local Homebrew installation on your machine to the fall of 2022 by typing:
git -C $(brew --repo homebrew/core) checkout fbb71d2e7b5
Following this, any Morpheus version can be installed as usual, with the only difference that prefixing HOMEBREW_NO_AUTO_UPDATE=1
and HOMEBREW_NO_INSTALL_FROM_API=1
is required to prevent Homebrew from attempting to obtain the latest versions of the dependencies:
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install morpheus
Also prepend or export the environment variables HOMEBREW_NO_AUTO_UPDATE=1
and HOMEBREW_NO_INSTALL_FROM_API=1
in the same way to upgrade an existing Morpheus installation under macOS 10.15 Catalina:
export HOMEBREW_NO_AUTO_UPDATE=1
export HOMEBREW_NO_INSTALL_FROM_API=1
brew upgrade morpheus
DMG File
Another method, which, unlike the Homebrew rewind procedure, may not be available immediately upon the release of a new version of Morpheus, is to download the latest available Apple disk image for Morpheus:
When opened, the disk image is mounted as a volume within the Finder. Drag and drop Morpheus.app
into your ‘Applications’ folder, then Control
-click (do not double-click) the App file inside your ‘Applications’ folder. Select ‘Open’ in the dialog that appears the first time you run it, and you’re ready to go.