Skip to content

Instantly share code, notes, and snippets.

@xeoncross
Created April 9, 2021 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xeoncross/2f1f80f0474a0b09dfb40db083cbc125 to your computer and use it in GitHub Desktop.
Save xeoncross/2f1f80f0474a0b09dfb40db083cbc125 to your computer and use it in GitHub Desktop.
Install spaCy on OSX Big Sur

spaCy on Mac Big Sur

Mac OSX ships with python (2) and python3 with pip3.

They should be current enough versions. If not, you can update them.

pip3 install -U pip3 setuptools

First install spaCy

pip3 install -U spacy

Then install the language pack

python3 -m spacy download en_core_web_md

Last install our libraries

pip3 install -r requirements.txt

Now you can run your app

python3 app.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment