mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-03 09:53:15 -05:00
Fix indentation in installation instructions
This commit is contained in:
parent
42aa760e2e
commit
e4f61e67e2
1 changed files with 24 additions and 33 deletions
57
README.md
57
README.md
|
@ -122,40 +122,31 @@ Version names to rbenv are simply the names of the directories in
|
||||||
|
|
||||||
### Using Package Managers
|
### Using Package Managers
|
||||||
|
|
||||||
1. Install rbenv.
|
1. Install rbenv using one of the following approaches.
|
||||||
- **macOS**
|
|
||||||
If you're on macOS, we recommend installing rbenv with
|
|
||||||
[Homebrew](https://brew.sh).
|
|
||||||
|
|
||||||
```sh
|
#### Homebrew
|
||||||
brew install rbenv
|
|
||||||
```
|
|
||||||
|
|
||||||
Note that this also installs `ruby-build`, so you'll be ready to
|
|
||||||
install other Ruby versions out of the box.
|
|
||||||
|
|
||||||
- **Upgrading with Homebrew**
|
On macOS or Linux, we recommend installing rbenv with [Homebrew](https://brew.sh).
|
||||||
|
|
||||||
To upgrade to the latest rbenv and update ruby-build with newly released
|
```sh
|
||||||
Ruby versions, upgrade the Homebrew packages:
|
brew install rbenv ruby-build
|
||||||
|
```
|
||||||
```sh
|
|
||||||
brew upgrade rbenv ruby-build
|
#### Debian, Ubuntu, and their derivatives
|
||||||
```
|
|
||||||
- **Debian, Ubuntu and their derivatives**
|
Note that the version of rbenv that is packaged and maintained in the
|
||||||
|
Debian and Ubuntu repositories is _out of date_. To install the latest
|
||||||
Note that the version of rbenv that is packaged and maintained in the
|
version, it is recommended to [install rbenv using git](#basic-github-checkout).
|
||||||
Debian and Ubuntu repositories is out of date. To install the latest
|
|
||||||
version, it is recommended to [install rbenv using git](#basic-github-checkout).
|
```sh
|
||||||
|
sudo apt install rbenv
|
||||||
```sh
|
```
|
||||||
sudo apt install rbenv
|
|
||||||
```
|
#### Arch Linux and its derivatives
|
||||||
- **Arch Linux and its derivatives**
|
|
||||||
|
Archlinux has an [AUR Package](https://aur.archlinux.org/packages/rbenv/) for
|
||||||
Archlinux has an [AUR Package](https://aur.archlinux.org/packages/rbenv/) for
|
rbenv and you can install it from the AUR using the instructions from this
|
||||||
rbenv and you can install it from the AUR using the instructions from this
|
[wiki page](https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_and_upgrading_packages).
|
||||||
[wiki page](https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_and_upgrading_packages).
|
|
||||||
|
|
||||||
2. Set up rbenv in your shell.
|
2. Set up rbenv in your shell.
|
||||||
|
|
||||||
|
@ -187,7 +178,7 @@ If you're on macOS, we recommend installing rbenv with
|
||||||
```
|
```
|
||||||
|
|
||||||
5. That's it! Installing rbenv includes ruby-build, so now you're ready to
|
5. That's it! Installing rbenv includes ruby-build, so now you're ready to
|
||||||
[install some other Ruby versions](#installing-ruby-versions) using
|
[install some Ruby versions](#installing-ruby-versions) using
|
||||||
`rbenv install`.
|
`rbenv install`.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue