Installing Hades

Installing a via an install script

Installing is as easy as pasting a command in your command-line.

With chocolatey

choco install hadeslang

Without chocolatey (powershell)

iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/Azer0s/HadesLang/master/install.ps1'))

Compiling yourself

On Linux and MacOS you can compile and install Hades manually.

Prerequisites

  • make

  • dotnet-core

  • git

Installation process

git clone https://github.com/Azer0s/HadesLang.git
cd HadesLang
./configure # choose default libraries and install path
make
make install

Last updated