You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo dnf group install c-development development-tools
37
+
```
38
+
39
+
### Install qlot
40
+
41
+
- Automatic installer
42
+
43
+
```
44
+
curl -L https://qlot.tech/installer | bash
45
+
```
46
+
47
+
> **Note:** For an alternative installation, see https://github.com/fukamachi/qlot#installation
48
+
49
+
### Download and install
50
+
51
+
There are two ways to install Lem:
52
+
53
+
**1. Local installation:**
54
+
55
+
```
56
+
mkdir $HOME/common-lisp
57
+
cd $HOME/common-lisp
58
+
git clone https://github.com/lem-project/lem.git
59
+
cd lem && make sdl2
60
+
```
61
+
62
+
> **Note:** You can also run `make sdl2-ncurses` to build Lem with both the SDL2 and ncurses interfaces. You can then choose the interface at startup with `-i / --interface`, either "sdl2" or "ncurses".
63
+
64
+
Then add the executable to your PATH by adding this line to your `~/.bashrc`:
0 commit comments