From 68d2b303677a6ff5f5f00167087b09ffc2f5bd4d Mon Sep 17 00:00:00 2001 From: lukehired Date: Mon, 11 Nov 2019 12:02:13 -0800 Subject: [PATCH] Add `conda install gcc` as setup step for README Sometimes, on MacOS, the headers with gcc will not be found without installing gcc with conda. Adding this step to the README will address this issue for future users. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7e9fb81..cc7e3c8 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ To reproduce our results: (optional) It might be a good idea to use a separate conda environment. It can be created by running: ``` conda create -n lama37 -y python=3.7 && conda activate lama37 +conda install gcc pip install -r requirements.txt ```