Install via Installers
Install via Windows Installer
For users who prefer not to manage Python environments, we provide a pre-built installer for Windows.
Steps
Download the
.exeinstaller:Version 1.26.0 and later: GitHub Releases
Version 1.24.0 and earlier: SourceForge
Make sure no older version of MuscleX is installed to avoid conflicts
Double-click the installer to run
Follow the installation wizard
Use the shortcut on the Desktop or Start Menu to launch MuscleX
Run the test using the Run Tests button in the launcher
This includes all dependencies and the GUI.
Install via macOS DMG Image
For older versions (1.23.2 and earlier), macOS builds are not signed, so you may need to bypass security warnings.
Download the
.dmgfile:Download the
.dmgfile from GitHub ReleasesVersion 1.23.2 and earlier: SourceForge
Open the
.dmgand drag the MuscleX app into the Applications folderIf you see an error message like “damaged app” or an “unidentified developer” warning, run in Terminal:
xattr -cr /Applications/MuscleX.app
Alternatively, right-click the app → hold the Option key → click Open → confirm.
Eject and delete the
.dmgafter installation
PKG Installer (Deprecated)
The
.pkginstaller is no longer produced. Use.dmgor Docker when possible.
Install via Linux Packages DEB Package
One-line install (removes any existing version, fetches and installs the latest .deb):
dpkg -s musclex >/dev/null 2>&1 && sudo apt remove -y musclex && sudo apt autoremove -y; tmp=$(mktemp /tmp/musclex_XXXXXX.deb); latest_url=$(curl -s https://api.github.com/repos/biocatiit/musclex/releases | grep browser_download_url | grep linux.deb | head -n 1 | cut -d '"' -f 4) && wget -O "$tmp" "$latest_url" && chmod a+r "$tmp" && sudo apt install -y "$tmp" && rm -f "$tmp"
Alternative (manual install):
Download the
.debfile from GitHub ReleasesIn terminal:
sudo dpkg --install musclex-1.27.x_amd64(linux).deb
Change ‘1.27.x’ to the real version you download.
Verify Installation
To verify CLI installation:
musclex --help
Try a sample module:
musclex dc
You may also launch the GUI from your system’s launcher or application folder.