From 3feaac1f1124b1b6e61086f125c8bfa10c689f86 Mon Sep 17 00:00:00 2001 From: Aaron Jencks <32805004+iggy12345@users.noreply.github.com> Date: Thu, 20 Jan 2022 21:11:42 -0600 Subject: [PATCH] Update README.md Added pyenv requirement to installation instructions --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index b8bdac0..b7fb52b 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,13 @@ Python, which the EBCLI Installer depends on, requires the following prerequisit ```shell Xcode openssl zlib readline ``` + +You also need to install `pyenv` which is not included above, to do so, use the following command on linux and mac (**Windows**: Please see their website https://github.com/pyenv/pyenv for installation instructions): + +```shell +# Linux and Mac only (at the moment) +curl https://pyenv.run | bash +``` ------