diff options
-rw-r--r-- | README.md | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -65,6 +65,11 @@ If using Linux, kernel version 5.6 or higher is strongly recommended, but the mi - [bun not running on an M1 (or Apple Silicon)](#bun-not-running-on-an-m1-or-apple-silicon) - [error: Unexpected](#error-unexpected) - [bun install is stuck](#bun-install-is-stuck) + - [Unzip is required](#unzip-is-required) + - [Debian / Ubuntu / Mint](#debian--ubuntu--mint) + - [RedHat / CentOS / Fedora](#redhat--centos--fedora) + - [Arch / Manjaro](#arch--manjaro) + - [OpenSUSE](#opensuse) - [Reference](#reference) - [`bun install`](#bun-install) - [Configuring bun install with `bunfig.toml`](#configuring-bun-install-with-bunfigtoml) @@ -903,6 +908,29 @@ To fix this issue: 2. Try again, and if the error still occurs, try setting `ulimit -n` to an absurdly high number, such as `ulimit -n 2147483646` 3. Try again, and if that still doesn’t fix it, open an issue +### Unzip is required +Unzip is required to install bun on Linux. You can use one of the following commands to install `unzip`: + +#### Debian / Ubuntu / Mint +```sh +sudo apt install unzip +``` + +#### RedHat / CentOS / Fedora +```sh +sudo dnf install unzip +``` + +#### Arch / Manjaro +```sh +sudo pacman -S unzip +``` + +#### OpenSUSE +```sh +sudo zypper install unzip +``` + ### bun install is stuck Please run `bun install --verbose 2> logs.txt` and send them to me in bun's discord. If you're on Linux, it would also be helpful if you run `sudo perf trace bun install --silent` and attach the logs. |