From af442bf47b3c2b100dd7d85399deb51b10347c7d Mon Sep 17 00:00:00 2001 From: "R. Miles McCain" Date: Fri, 14 Jan 2022 15:28:20 -0800 Subject: [PATCH] README fixes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 222aa53..7a990e3 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The first step is to clone uCluster onto your local machine (`git clone git@gith Mac users will need to install OpenCV and OpenBLAS using Homebrew: `brew install openblas opencv`. (On Linux, see [this guide](https://docs.scipy.org/doc/scipy/reference/building/linux.html)). -If you're on an x86 machine, everything should go relatively smoothly. With [Poetry](https://python-poetry.org/) installed, simply run `poetry install`. If you want to use uCluster in your "main" VisiData environment (i.e., you don't want to have to activate the Poetry virtual environment every time), then run `poetry env use $(which python3)` before running `poetry install`. +If you're on an x86 machine, everything should go relatively smoothly. With [Poetry](https://python-poetry.org/) installed, simply run `poetry install`. If you want to use uCluster in your "main" VisiData environment (i.e., you don't want to have to activate the Poetry virtual environment every time), then run `poetry config settings.virtualenvs.create false` before running `poetry install`. If you're on an M1 machine, things are a bit more complex. It doesn't seem possible to install SciPy (required by NLTK) using pip3 on the M1's, as it requires building SciPy from scratch. As a result, you'll need to use [Conda](https://conda.io). In the main project folder, run `conda env create -f env.yml`, then `conda activate ucluster`. Next, run `poetry env use $(which python3)` followed by `poetry install`.