Install release:
Install latest version in development:
- Download the latest .deb package from release page or with command line:
wget https://github.com/dkolmakov/hm/releases/download/v1.0.0/hm-1.0.0-Linux-x86_64.deb
- Install it:
sudo dpkg -i hm-1.0.0-Linux-x86_64.deb
- Download the latest .nix expression from release page or with command line:
wget https://github.com/dkolmakov/hm/releases/download/v1.0.0/hm-1.0.0.nix
- Install it:
nix-env -i -f hm-1.0.0.nix
- Download the latest .tar.gz expression from release page or with command line:
wget https://github.com/dkolmakov/hm/archive/v1.0.0.tar.gz
- Unpack it:
tar xvf v${version}.tar.gz
- Build and install it:
cd hm-${version}
mkdir build
cd build
cmake ..
make install
- Run system tests to verify the installation (tests are built with pytest):
py.test
- Use
git
to clone the repository:
git clone https://github.com/dkolmakov/hm.git
- Build and install the project:
cd hm
mkdir build
cd build
cmake ..
make install
- Run system tests to verify the installation (tests are built with pytest):
py.test