GNU/Linux
Lem 2.1 was released! It provides binaries for Linux, MacOS and Windows.
- Debian-like distro
sudo apt install sbcl build-essential libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev
- Fedora-like distro
sudo dnf install sbcl SDL2-devel SDL2_image-devel SDL2_ttf-devel
sudo dnf group install "C Development Tools and Libraries" "Development Tools"
- Automatic installer
curl -L https://qlot.tech/installer | bash
For an alternative installation, https://github.com/fukamachi/qlot#installation
- Create the directories
mkdir $HOME/common-lisp
cd $HOME/common-lisp
git clone https://github.com/lem-project/lem.git
cd lem && make sdl2
- Copying the PATH to
~/.bashrc
export PATH="$HOME/common-lisp/lem:$PATH"