mirror of
https://github.com/xHyroM/bun-discord-bot.git
synced 2024-11-10 01:08:07 +01:00
tags: how to install
This commit is contained in:
parent
5593d9259f
commit
72fe5377fb
1 changed files with 28 additions and 0 deletions
28
data/tags/install.md
Normal file
28
data/tags/install.md
Normal 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"
|
||||
```
|
Loading…
Reference in a new issue