From 38a4a92829585886ba69abad34abe97c2c69feec Mon Sep 17 00:00:00 2001 From: Ishan Rathi <35580549+ishan190425@users.noreply.github.com> Date: Wed, 1 Feb 2023 20:45:52 -0500 Subject: [PATCH] Updated setup Included way to install with homebrew (fastest) --- docs/guide/host_pc/setup_mac.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/guide/host_pc/setup_mac.md b/docs/guide/host_pc/setup_mac.md index 7df16e4c..08a94f7b 100644 --- a/docs/guide/host_pc/setup_mac.md +++ b/docs/guide/host_pc/setup_mac.md @@ -43,7 +43,16 @@ conda env remove -n donkey * Create the Python anaconda environment -Recommended (faster install time): +Recomended (fastest install time): +```bash +brew install --cask micromamba +micromamba env create -f install/envs/mac.yml +conda activate donkey +pip install -e .[pc] +``` +Note: if you are using ZSH (you'll know if you are), you won't be able to run `pip install -e .[pc]`. You'll need to escape the brackets and run `pip install -e .\[pc\]`. + +Alternative (faster install time): ```bash conda install mamba -n base -c conda-forge