2017-03-21 17:23:51 +01:00
|
|
|
# Install
|
|
|
|
|
|
|
|
## Requirements
|
2018-01-01 17:17:33 +01:00
|
|
|
CaesiumCLT is based on [libcaesium](https://github.com/Lymphatus/libcaesium) and requires it to be compiled and installed.
|
2017-03-21 17:23:51 +01:00
|
|
|
Please refer to its own documentation.
|
|
|
|
You will also need cmake if you want to compile it from source.
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
|
|
|
|
### Windows
|
|
|
|
For Windows you just need to download the latest release package from [here](https://github.com/Lymphatus/caesium-clt/releases).
|
|
|
|
Unzip the package using your favorite software, open it and run `caesiumclt.exe` from the Command Prompt or PowerShell.
|
2018-01-01 17:17:33 +01:00
|
|
|
|
|
|
|
### MacOS X
|
2017-03-21 17:23:51 +01:00
|
|
|
**NOTE:** Homebrew installation will come soon. Use Linux instructions below for now.
|
2018-01-01 17:17:33 +01:00
|
|
|
|
2017-03-21 17:23:51 +01:00
|
|
|
### Linux
|
|
|
|
Download the latest release package from [here](https://github.com/Lymphatus/caesium-clt/releases) or clone from git.
|
|
|
|
Then run:
|
|
|
|
|
|
|
|
$ cd caesium-clt
|
|
|
|
$ mkdir build && cd build
|
|
|
|
$ cmake ..
|
|
|
|
$ make
|
|
|
|
$ sudo make install
|
|
|
|
|
|
|
|
This will compile and install caesiumclt in your `PATH`.
|
|
|
|
You can verify everything went ok by running `caesiumclt -v`.
|
|
|
|
|
|
|
|
|