mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-02 16:41:16 -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
45
README.md
45
README.md
|
@ -122,40 +122,31 @@ Version names to rbenv are simply the names of the directories in
|
|||
|
||||
### Using Package Managers
|
||||
|
||||
1. Install rbenv.
|
||||
- **macOS**
|
||||
If you're on macOS, we recommend installing rbenv with
|
||||
[Homebrew](https://brew.sh).
|
||||
1. Install rbenv using one of the following approaches.
|
||||
|
||||
```sh
|
||||
brew install rbenv
|
||||
```
|
||||
#### Homebrew
|
||||
|
||||
Note that this also installs `ruby-build`, so you'll be ready to
|
||||
install other Ruby versions out of the box.
|
||||
On macOS or Linux, we recommend installing rbenv with [Homebrew](https://brew.sh).
|
||||
|
||||
- **Upgrading with Homebrew**
|
||||
```sh
|
||||
brew install rbenv ruby-build
|
||||
```
|
||||
|
||||
To upgrade to the latest rbenv and update ruby-build with newly released
|
||||
Ruby versions, upgrade the Homebrew packages:
|
||||
#### Debian, Ubuntu, and their derivatives
|
||||
|
||||
```sh
|
||||
brew upgrade rbenv ruby-build
|
||||
```
|
||||
- **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
|
||||
version, it is recommended to [install rbenv using git](#basic-github-checkout).
|
||||
|
||||
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
|
||||
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
|
||||
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).
|
||||
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
|
||||
[wiki page](https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_and_upgrading_packages).
|
||||
|
||||
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
|
||||
[install some other Ruby versions](#installing-ruby-versions) using
|
||||
[install some Ruby versions](#installing-ruby-versions) using
|
||||
`rbenv install`.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue