diff --git a/Common-build-problems.md b/Common-build-problems.md index 59065fa..c3228a2 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -63,6 +63,13 @@ Below are some alternative packages that are not in the recommended set and shou sudo yum swap openssl-devel openssl11-devel ``` +* openSUSE: + + * Alternative to readline-devel: + + ```sh + sudo zypper install libedit-devel + ``` * Arch and derivatives @@ -237,6 +244,15 @@ E.g. (invocations that worked for various people): pyenv install -v 3.10.6 ``` +* openSUSE: + + ```sh + CPPFLAGS="$(pkg-config --cflags openssl)" \ + LDFLAGS="$(pkg-config --libs openssl)" \ + pyenv install -v 3.10.6 + ``` + + * Arch Linux: ```sh