diff --git a/INSTALL.md b/INSTALL.md index 3b2aa27..8cfc77a 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,8 +1,20 @@ # How to install Ecla -## Install Requirements +## Download a release -Install Go 1.19 or later. +You can download the Ecla interpreter as a prebuilt standalone binary for your system from the latest release in https://github.com/Eclalang/Ecla/releases + +Rename the executable file to `ecla` or `ecla.exe` depending on your os, and add the file path to your PATH. + +Restart your terminal to apply the changes. + +## Build from sources + +Alternatively you can build the Ecla interpreter from the sources + +### Install Requirements + +Install Go 1.21.1 or later. ### Windows: @@ -16,8 +28,8 @@ Install Go 1.19 or later. - Use the following command to install Go: ```bash -wget https://dl.google.com/go/go1.19.linux-amd64.tar.gz -sudo tar -xvf go1.19.linux-amd64.tar.gz +wget https://dl.google.com/go/go1.21.1.linux-amd64.tar.gz +sudo tar -xvf go1.21.1.linux-amd64.tar.gz sudo mv go /usr/local ``` @@ -31,7 +43,7 @@ export PATH=$GOPATH/bin:$GOROOT/bin:$PATH - Save and close the file. Then, reload your terminal and type "go version". This should display the version of Go you just installed. -## Build the Ecla Interpreter +### Build the Ecla Interpreter - Clone the repository: diff --git a/docs/FR/INSTALL.md b/docs/FR/INSTALL.md index 8604a85..32f60d5 100644 --- a/docs/FR/INSTALL.md +++ b/docs/FR/INSTALL.md @@ -1,8 +1,20 @@ # Comment installer Ecla +## Télécharger une release + +Vous pouvez télécharger l'interpréteur Ecla en tant que binaire autonome pré-construit pour votre système depuis la dernière release sur https://github.com/Eclalang/Ecla/releases + +Renommez le fichier exécutable en `ecla` ou `ecla.exe` selon votre système d'exploitation, et ajoutez le chemin du fichier à votre variable d'environnement PATH. + +Redémarrez votre terminal pour appliquer les changements. + +## Construire depuis les sources + +Alternativement, vous pouvez construire l'interpréteur Ecla depuis les sources + ## Prérequis -Installer Go 1.19 ou plus. +Installer Go 1.21.1 ou plus. ### Windows: @@ -16,8 +28,8 @@ Installer Go 1.19 ou plus. - Utilisez les commandes suivantes pour installer Go: ```bash -wget https://dl.google.com/go/go1.19.linux-amd64.tar.gz -sudo tar -xvf go1.19.linux-amd64.tar.gz +wget https://dl.google.com/go/go1.21.1.linux-amd64.tar.gz +sudo tar -xvf go1.21.1.linux-amd64.tar.gz sudo mv go /usr/local ``` @@ -48,4 +60,4 @@ go build -o . > Si vous le voulez vous pouvez aussi exporter l'executable a vos variables d'environnements. -## Vous êtes prêt à utiliser Ecla! \ No newline at end of file +## Vous êtes prêt à utiliser Ecla!