Installing WEM
→ Precompiled Binary
Release builds can be found here.
Developments builds can be found here.
You can run these commands in a terminal to get a folder called wem
with a binary called wem
that you can put into your $PATH
.
curl -sO curl -sO https://wem.hristos.co/files/wem.tar.bz2
curl -s https://wem.hristos.co/files/wem.tar.bz2.sha512sum.txt | sha512sum -c -
tar -xvf wem.tar.bz2
# Change this destination as desired, preferrably some place in your $PATH
mv -iv wem/wem $HOME/.local/bin/
The binaries are built on Debian "oldstable" .
→ Linux Distro Packages
Install WEM with your favorite distro's package manager:
→ Source
WEM source code is hosted on GitLab. Compiling source requires Go 1.24 or newer:
$ git clone https://gitlab.com/hristoast/wem
$ cd wem
$ make
This produces a wem
binary in the working directory.