https://github.com/gleam-community/gleam-install
An installer for Gleam on Linux and macOS
https://github.com/gleam-community/gleam-install
Last synced: 4 months ago
JSON representation
An installer for Gleam on Linux and macOS
- Host: GitHub
- URL: https://github.com/gleam-community/gleam-install
- Owner: gleam-community
- License: agpl-3.0
- Created: 2023-11-09T05:31:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-08T23:04:55.000Z (about 1 year ago)
- Last Synced: 2024-08-02T14:10:35.898Z (7 months ago)
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 16
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Gleam installer
> Finally, an installer that will have the latest version Gleam version 3 seconds after it's been released _and_ work on my toaster.
```sh
curl -fsSL https://gleam.pink/install.sh | sh
```### `--version`
You can install a specific version with the `--version` flag. This works for Gleam nightly as well!
```sh
curl -fsSL https://gleam.pink/install.sh | sh -s -- --version nightly # bleeding edge 😎
curl -fsSL https://gleam.pink/install.sh | sh -s -- --version 1.0.0 # one day :^)
```### `--prefix`
To avoid conflict with your system package manager, the default install prefix is /usr/local/gleam. You may specify a different directory if you like!
```sh
curl -fsSL https://gleam.pink/install.sh | sh -s -- --prefix /usr/local
curl -fsSL https://gleam.pink/install.sh | sh -s -- --prefix ~/.local
```