1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-12 13:33:45 -05:00

this fixed a build problem for me on Dreamhost shared hosting

Matt Cooper
2023-12-19 16:45:12 -05:00
parent 23dfa671fd
commit 8c683b0a67

@@ -11,6 +11,7 @@
- [Build failed - bad interpreter: Permission denied](#build-failed-bad-interpreter-permission-denied) - [Build failed - bad interpreter: Permission denied](#build-failed-bad-interpreter-permission-denied)
- [Build failed](#build-failed) - [Build failed](#build-failed)
- [Build failed: "ERROR: The Python zlib extension was not compiled. Missing the zlib?"](#build-failed-error-the-python-zlib-extension-was-not-compiled-missing-the-zlib) - [Build failed: "ERROR: The Python zlib extension was not compiled. Missing the zlib?"](#build-failed-error-the-python-zlib-extension-was-not-compiled-missing-the-zlib)
- [Build failed: Resource temporarily unavailable](#build-failed-resource-temporarily-unavailable)
- [ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?](#error-the-python-ssl-extension-was-not-compiled-missing-the-openssl-lib) - [ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?](#error-the-python-ssl-extension-was-not-compiled-missing-the-openssl-lib)
- [python-build: definition not found](#python-build-definition-not-found) - [python-build: definition not found](#python-build-definition-not-found)
- [macOS: "ld: symbol(s) not found for architecture x86_64" (#1245)](#macos-ld-symbol-s-not-found-for-architecture-x86-64-1245) - [macOS: "ld: symbol(s) not found for architecture x86_64" (#1245)](#macos-ld-symbol-s-not-found-for-architecture-x86-64-1245)
@@ -171,6 +172,12 @@ If you are using Ubuntu/Debian, you need the following packages:
sudo apt install zlib1g zlib1g-dev libssl-dev libbz2-dev libsqlite3-dev sudo apt install zlib1g zlib1g-dev libssl-dev libbz2-dev libsqlite3-dev
``` ```
## Build failed: Resource temporarily unavailable
If you see the string "resource temporarily unavailable" (often after "fork: "), then you may be on a shared host or other machine with low resource limits. Try running only a single job at a time to reduce resource usage:
```sh
MAKE_OPTS='-j 1' pyenv install 3.12.1
```
## ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib? ## ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib?
### 0. First, check ### 0. First, check