From d23144bc6176b59c35fb15d4a65abdd354c1dfbc Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Thu, 26 Mar 2020 22:33:12 +0100 Subject: [PATCH] [Docs] Fix Mac instructions in the install guide (#3675) * Update install_linux_mac.rst * Address review * Use new Homebrew installer * Add python@3.8 to PATH --- docs/install_linux_mac.rst | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/install_linux_mac.rst b/docs/install_linux_mac.rst index 6b7e20da5..c80ba73ac 100644 --- a/docs/install_linux_mac.rst +++ b/docs/install_linux_mac.rst @@ -163,20 +163,18 @@ following, then press Enter: .. code-block:: none - /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" + /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" After the installation, install the required packages by pasting the commands and pressing enter, one-by-one: .. code-block:: none - brew install python --with-brewed-openssl + brew install python@3.8 + echo 'export PATH="/usr/local/opt/python@3.8/bin:$PATH"' >> ~/.profile + source ~/.profile brew install git - brew tap caskroom/versions - brew cask install homebrew/cask-versions/adoptopenjdk11 - -It's possible you will have network issues. If so, go in your Applications folder, inside it, go in -the Python 3.8 folder then double click ``Install certificates.command``. + brew cask install adoptopenjdk/openjdk/adoptopenjdk11 Continue by `creating-venv-linux`.