Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions pages/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Wasmer allows you to run applications either **Standalone** (_via the CLI_) or *
<Tab>
**Unix** (macOS, Linux):

```bash
```bash copy
curl https://get.wasmer.io -sSfL | sh
```

Or, to install a specific version:

```bash /4\.3\.0/
```bash copy
curl https://get.wasmer.io -sSfL | sh -s "v4.3.0"
```

Expand All @@ -28,7 +28,7 @@ Wasmer allows you to run applications either **Standalone** (_via the CLI_) or *
### Is Wasmer up to date?
Wasmer updates very frequently. If you have installed Wasmer some time ago, chances are your Wasmer version is out of date. Get the latest version of Wasmer by running:

```bash
```bash copy
wasmer self-update
```

Expand All @@ -38,13 +38,13 @@ Wasmer allows you to run applications either **Standalone** (_via the CLI_) or *
<Tab>
**PowerShell** (Windows):

```bash
```bash copy
iwr https://win.wasmer.io -useb | iex
```

Or, to install a specific version:

```bash /4\.3\.0/
```bash copy
$v="v4.3.0"; iwr https://win.wasmer.io -useb | iex
```

Expand All @@ -56,7 +56,7 @@ Wasmer allows you to run applications either **Standalone** (_via the CLI_) or *
### Is Wasmer up to date?
Wasmer updates very frequently. If you have installed Wasmer some time ago, chances are your Wasmer version is out of date. Get the latest version of Wasmer by running:

```bash
```bash copy
wasmer self-update
```

Expand All @@ -67,13 +67,13 @@ Wasmer allows you to run applications either **Standalone** (_via the CLI_) or *
<Tab>
**NPM**:

```bash
```bash copy
npm install @wasmer/sdk --save
```

Bun:

```bash /@wasmer/ /sdk/
```bash /@wasmer/ /sdk/ copy
bun install @wasmer/sdk --save
```

Expand Down
Loading