Skip to content

Commit

Permalink
Merge pull request #371 from Eclalang/update-Install-docs
Browse files Browse the repository at this point in the history
Update INSTALL.md
  • Loading branch information
mkarten authored May 14, 2024
2 parents 8209605 + 35bac41 commit 3929848
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 9 deletions.
22 changes: 17 additions & 5 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -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
```

Expand All @@ -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:

Expand Down
20 changes: 16 additions & 4 deletions docs/FR/INSTALL.md
Original file line number Diff line number Diff line change
@@ -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:

Expand All @@ -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
```

Expand Down Expand Up @@ -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!
## Vous êtes prêt à utiliser Ecla!

0 comments on commit 3929848

Please sign in to comment.