HadesLang Doc
Search…
Overview
Getting Started
Installing Hades
Basic Syntax
Coding Conventions
Language Spec
Core Libraries
Other
Powered By
GitBook
Installing Hades
Installing a via an install script
Installing is as easy as pasting a command in your command-line.
Windows
Linux
With chocolatey
choco
install
hadeslang
Without chocolatey (powershell)
iex
((
New
-
Object System.Net.WebClient
)
.DownloadString
(
'https
://
raw.githubusercontent.com
/
Azer0s
/
HadesLang
/
master
/
install.ps1'
))
wget
-O - https://raw.githubusercontent.com/Azer0s/HadesLang/master/install.sh
|
bash
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
Previous
Getting Started
Next
Basic Syntax
Last modified
3yr ago
Copy link
Outline
Installing a via an install script
Compiling yourself
Prerequisites
Installation process