Skip to content

Commit

Permalink
README fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
milesmcc committed Jan 14, 2022
1 parent a1c5081 commit af442bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down

0 comments on commit af442bf

Please sign in to comment.