Installing is as easy as pasting a command in your command-line.
{% tabs %} {% tab title="Windows" %}
choco install hadeslang
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/Azer0s/HadesLang/master/install.ps1'))
{% endtab %}
{% tab title="Linux" %}
wget -O - https://raw.githubusercontent.com/Azer0s/HadesLang/master/install.sh | bash
{% endtab %} {% endtabs %}
On Linux and MacOS you can compile and install Hades manually.
- make
- dotnet-core
- git
git clone https://github.com/Azer0s/HadesLang.git
cd HadesLang
./configure # choose default libraries and install path
make
make install