Skip to main content

Morph Installer Quickstart

This guide is fully end-user focused:

  1. Download the latest version from GitHub Releases
  2. Complete installation with the installer
  3. Open a terminal (PowerShell, CMD, or Bash)
  4. Start the REPL
  5. Create a new project
  6. Take the first build
  7. Run the project

This page uses screenshot placeholders; you can replace them with real images later.


1) Download the Latest Version from GitHub Releases

Open this page in your browser:

https://github.com/jeandarcc/morph/releases/latest

Download the package for your operating system:

  • Windows: .exe installer
  • Linux/macOS: the relevant archive or installer published for your platform

Placeholder - GitHub Releases latest page

Note: This guide uses the Windows installer flow. Linux/macOS follows the same logic: after installation, verify the morph command in a terminal and continue with the same project flow.


2) Run the Installer and Complete Setup

  1. Open the installer you downloaded
  2. Accept the license and complete the setup steps
  3. Finish and close the wizard

Placeholder - Installer welcome and next steps

Placeholder - Installer completed screen


3) Open a Terminal (PowerShell, CMD, or Bash)

After installation, open a new terminal window:

  • PowerShell
  • CMD
  • Bash (WSL/Git Bash, etc.)

Verify that the command is available:

morph help

Expected result: command help output with available commands.

Placeholder - morph help output in terminal

If morph is not recognized:

  • Fully close and reopen the terminal
  • If it still fails, rerun the installer or check your PATH

4) Start the REPL

To start the interactive REPL, run:

morph

This starts REPL when running in a TTY terminal.

Placeholder - REPL startup screen

For a quick check, try a short expression (depends on environment), then exit the REPL.


5) Create a New Project

Create the project:

morph new my-first-app
cd my-first-app

This generates a basic project scaffold (morph.toml, src/Main.mx, etc.).

Placeholder - folder structure after morph new


6) Take the First Build

Inside the project folder, run the first build:

morph build

Expected result: build completes and project artifacts are written under build/.

Placeholder - first build output


7) Run the Project

In the project folder:

morph run

This command builds the project (if needed) and runs it.

Placeholder - morph run output


Full Flow (Quick Summary)

# 1) Open a terminal after installation
morph help

# 2) REPL
morph

# 3) New project
morph new my-first-app
cd my-first-app

# 4) First build + run
morph build
morph run

Common Issues

morph command not found

  • Open a new terminal
  • Check PATH
  • Rerun the installer

morph build fails

  • Make sure you are in the project folder (you should see morph.toml)
  • If morph help works, installation is fine; inspect the build error output for missing dependencies or config issues

Continue