Skip to content

Commit

Permalink
feat: update aikup installation documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed May 9, 2024
1 parent 3e08a2c commit 1ac4e40
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions src/pages/installation-instructions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,35 @@ import { InstallationInstructions } from "../components/installation-instruction

## Compiler & toolkit

### From `aikup` (Linux & MacOS only)
### From `aikup`

First, install `aikup`: a basic utility tool to download and manage Aiken's
pre-compiled executables:

#### Linux & MacOS

> Homebrew is supported
```sh
curl --proto '=https' --tlsv1.2 -LsSf https://install.aiken-lang.org | sh
```

#### Windows

```sh
powershell -c "irm https://windows.aiken-lang.org | iex"
```

#### Homebrew

```sh
brew install aiken-lang/tap/aikup
```

#### npm

```sh
curl -sSfL https://install.aiken-lang.org | bash
npm install -g @aiken-lang/aikup
```

Then, simply run:
Expand Down

0 comments on commit 1ac4e40

Please sign in to comment.