diff options
author | 2022-07-07 21:36:41 -0400 | |
---|---|---|
committer | 2022-07-07 21:36:41 -0400 | |
commit | 35d1f51d75ad7945a616fe216d17eafc265a0ae3 (patch) | |
tree | dae2ddde449ac09991b4386ff77dc1a466a31fd2 | |
parent | 1ee94d5bd261b4cfad7798f0e119499f351b93f3 (diff) | |
parent | ba9c64dc147cad6934dbc6a030e5da98548b2e1c (diff) | |
download | bun-35d1f51d75ad7945a616fe216d17eafc265a0ae3.tar.gz bun-35d1f51d75ad7945a616fe216d17eafc265a0ae3.tar.zst bun-35d1f51d75ad7945a616fe216d17eafc265a0ae3.zip |
Merge pull request #305 from MoritzLoewenstein/main
-rw-r--r-- | README.md | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -67,6 +67,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) @@ -941,6 +946,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. |