tags: how to install

This commit is contained in:
Jozef Steinhübl 2024-01-19 09:39:07 +01:00
parent 5593d9259f
commit 72fe5377fb
No known key found for this signature in database
GPG key ID: E944BC293F5FF7E7

28
data/tags/install.md Normal file
View file

@ -0,0 +1,28 @@
---
question: How to install bun?
keywords:
- "install"
- "installation"
- "installing"
- "install bun"
- "installing bun"
- "installation bun"
- "installation of bun"
- "how to"
- "linux"
- "macos"
- "windows"
---
If you're on **Linux or macOS**, you can install bun using the following command:
```bash
curl -fsSL https://bun.sh/install.sh | bash
# or if you want specific version
curl -fsSL https://bun.sh/install.sh | bash -s "bun-v1.0.0"
```
If you're on **Windows**, you can install experimental build of bun using the following command:
```ps
powershell -c "irm bun.sh/install.ps1|iex"
```