1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-15 06:43:53 -05:00

grammar; Opensuse command contradicts Home. Let someone in the know sort that out eventually...

native-api
2021-05-09 22:51:16 +03:00
parent 4e7de5efe5
commit 6b4a973cc1

@@ -6,13 +6,13 @@ Below are some alternatives to those
* Ubuntu/Debian: * Ubuntu/Debian:
* Alternative of libreadline-dev: * Alternative to libreadline-dev:
```sh ```sh
sudo apt install libedit-dev sudo apt install libedit-dev
``` ```
* An [inferior alternative](https://github.com/docker-library/python/issues/235) for `libncursesw` if it's not available: * An [inferior alternative](https://github.com/docker-library/python/issues/235) to `libncursesw`:
```sh ```sh
sudo apt install libncurses5-dev sudo apt install libncurses5-dev
@@ -21,23 +21,15 @@ Below are some alternatives to those
* Fedora/CentOS/RHEL(aws ec2): * Fedora/CentOS/RHEL(aws ec2):
* Alternative of openssl-devel: * Alternative to openssl-devel:
```sh ```sh
sudo yum install compat-openssl10-devel --allowerasing sudo yum install compat-openssl10-devel --allowerasing
``` ```
* openSUSE
For building Python versions from source with OpenSUSE you need the packages in pattern `devel_basis`
```sh
zypper in -t pattern devel_basis
```
* Arch and derivatives * Arch and derivatives
The library ncurses5 would require an [AUR Helper](https://wiki.archlinux.org/index.php/AUR_helpers) to install. If using [YAY](https://aur.archlinux.org/packages/yay/): Installing an older version of ncurses, `ncurses5`, requires an [AUR Helper](https://wiki.archlinux.org/index.php/AUR_helpers) to install. If using [YAY](https://aur.archlinux.org/packages/yay/):
```sh ```sh
yay -S ncurses5-compat-libs yay -S ncurses5-compat-libs
@@ -46,7 +38,7 @@ Below are some alternatives to those
## Removing a python version manually ## Removing a python version manually
```sh ```sh
rm -rf ~/.pyenv/versions/X.Y.Z rm -rf "$(pyenv root)/versions/X.Y.Z"
``` ```
Where "X.Y.Z" is the version that you want to remove. To list installed versions: Where "X.Y.Z" is the version that you want to remove. To list installed versions: