Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Installation

Note

Before installing RASM, make sure your computer uses an x86_64 processor architecture (also known as AMD64, x64, or x86-64). At the moment, RASM supports only this architecture.


1. Download

Download the latest version of RASM using one of the following methods:

  • from the official website;
  • from GitHub Releases.

Choose the archive corresponding to your operating system.


2. Extract the archive

Extract the downloaded archive to a convenient location.

For example:

  • Windows: C:\Tools\RASM\
  • Linux: /opt/rasm/ or $HOME/.local/rasm/
  • macOS: /usr/local/rasm/ or $HOME/.local/rasm/

3. Add RASM to the PATH

To run the rasm command from any directory, add the directory containing the executable to your PATH environment variable.

Windows

  1. Press Win + R.

  2. Type sysdm.cpl and press Enter.

  3. Open the Advanced tab.

  4. Click Environment Variables…

  5. Under User variables, select Path, then click Edit…

  6. Click New.

  7. Add the directory containing rasm.exe, for example:

    C:\Tools\RASM
    
  8. Click OK in all open dialogs.

  9. Close and reopen your terminal.


Linux

Open your shell configuration file.

For Bash:

echo 'export PATH="$PATH:/path/to/rasm"' >> ~/.bashrc
source ~/.bashrc

For Zsh:

echo 'export PATH="$PATH:/path/to/rasm"' >> ~/.zshrc
source ~/.zshrc

Replace /path/to/rasm with the directory containing the rasm executable.


macOS

If you are using Bash:

echo 'export PATH="$PATH:/path/to/rasm"' >> ~/.bash_profile
source ~/.bash_profile

If you are using Zsh (the default shell on modern macOS versions):

echo 'export PATH="$PATH:/path/to/rasm"' >> ~/.zshrc
source ~/.zshrc

4. Verify the installation

Open a new terminal and run:

rasm -v

If the installation was successful, the installed RASM version information will be displayed.