Installation
Currently Ligo can be installed on Linux and MacOS. It still possible to use it on Windows through WSL or docker.
You can also try LIGO in a Gitpod environment
Releases
Releases are available at the releases page of GitLab project. All the artifacts are attached there.
If you wish to see the changelog, you can either run ligo changelog
or go to this page. It contains links to corresponding releases, should you wish to download the artifacts.
Install
- Linux binary
- MacOS
- Debian package
- Arch
- Dockerized
- Windows
The ligo
executable is statically linked. It should run on most modern Linux distributions.
You can get the rolling release here, make it executable, and you are done!
For a specific version, you can visit our release page.
Optionally, you can put it somewhere in your PATH
for easy access:
Try our tap :
To upgrade ligo :
A .deb
package containing the static ligo
executable is also available.
First, download the package, and then install using:
It's possible to install latest release of ligo through AUR
Or through tools like yay
If you've installed 🐳 Docker, you can run the latest LIGO release:
Linux or OSX:
docker run --rm -v "$PWD":"$PWD" -w "$PWD" ligolang/ligo:1.7.0For convenience you can alias the above command
alias ligo='docker run --rm -v "$PWD":"$PWD" -w "$PWD" ligolang/ligo:1.7.0'To make this
alias
persistent across terminal sessions you need to configure your shell.
Here is a good link with the steps on how to do that.
Or if you want the development version, replace the version above with next
.
Or run one of the older versions found on DockerHub.
It's possible to use ligo in Docker through docker or WSL2
docker run --rm -v "%CD%":/cd -w /cd ligolang/ligo:1.7.0`For convenience you can alias the above command
doskey ligo=docker run --rm -v "%CD%":/cd -w /cd ligolang/ligo:1.7.0 $*To make the alias persistent across terminal sessions you need to add the
doskey
to the Windows Registry.
Follow this stackoverflow answer for the steps on how to do that.
Or if you want the development version, replace the version above with next
.
Or run one of the older versions found on DockerHub.