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
-
Press Win + R.
-
Type
sysdm.cpland press Enter. -
Open the Advanced tab.
-
Click Environment Variables…
-
Under User variables, select Path, then click Edit…
-
Click New.
-
Add the directory containing
rasm.exe, for example:C:\Tools\RASM -
Click OK in all open dialogs.
-
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.