Open TimDettmers opened 6 years ago
Hi Tim, can you try downgrading to spacy 1.9 or change the stopword set to something else. For instance you can provide an empty set. However, I will try to fix the issue within the day.
I changed the spacy version in requirements back to 1.9. It was temporarily changed because there was a bug on spacys side. Compared to 2.x, spacy 1.9 is really fast for shallow preprocessing including tokenisaton, lemmatisation etc. That is why we stick with it for the time being.
Let's have a test for the method though. I'll keep this issue open.
Well, I'm glad you kept it open. I have the same problem. I read some where else to try loading spacy via either !python -m spacy download en
or by calling
spacy.load('en')
right before you needed.
That worked.
Requirement already satisfied: en_core_web_sm==2.2.0 from https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz#egg=en_core_web_sm==2.2.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (2.2.0)
Requirement already satisfied: spacy>=2.2.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from en_core_web_sm==2.2.0) (2.2.2)
Requirement already satisfied: blis<0.5.0,>=0.4.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (0.4.1)
Requirement already satisfied: plac<1.2.0,>=0.9.6 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (0.9.6)
Requirement already satisfied: preshed<3.1.0,>=3.0.2 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (3.0.2)
Requirement already satisfied: cymem<2.1.0,>=2.0.2 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (2.0.2)
Requirement already satisfied: srsly<1.1.0,>=0.1.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (0.1.0)
Requirement already satisfied: wasabi<1.1.0,>=0.3.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (0.4.0)
Requirement already satisfied: setuptools in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (41.6.0.post20191030)
Requirement already satisfied: requests<3.0.0,>=2.13.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (2.22.0)
Requirement already satisfied: numpy>=1.15.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (1.17.1)
Requirement already satisfied: importlib-metadata>=0.20; python_version < "3.8" in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (0.20)
Requirement already satisfied: murmurhash<1.1.0,>=0.28.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (1.0.2)
Requirement already satisfied: thinc<7.4.0,>=7.3.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from spacy>=2.2.0->en_core_web_sm==2.2.0) (7.3.1)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Users/alex/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.0->en_core_web_sm==2.2.0) (3.0.4)
Requirement already satisfied: idna<2.9,>=2.5 in /Users/alex/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.0->en_core_web_sm==2.2.0) (2.8)
Requirement already satisfied: certifi>=2017.4.17 in /Users/alex/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.0->en_core_web_sm==2.2.0) (2019.6.16)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /Users/alex/anaconda3/lib/python3.7/site-packages (from requests<3.0.0,>=2.13.0->spacy>=2.2.0->en_core_web_sm==2.2.0) (1.25.3)
Requirement already satisfied: zipp>=0.5 in /Users/alex/anaconda3/lib/python3.7/site-packages (from importlib-metadata>=0.20; python_version < "3.8"->spacy>=2.2.0->en_core_web_sm==2.2.0) (0.6.0)
Requirement already satisfied: tqdm<5.0.0,>=4.10.0 in /Users/alex/anaconda3/lib/python3.7/site-packages (from thinc<7.4.0,>=7.3.0->spacy>=2.2.0->en_core_web_sm==2.2.0) (4.35.0)
Requirement already satisfied: more-itertools in /Users/alex/anaconda3/lib/python3.7/site-packages (from zipp>=0.5->importlib-metadata>=0.20; python_version < "3.8"->spacy>=2.2.0->en_core_web_sm==2.2.0) (7.2.0)
✔ Download and installation successful
You can now load the model via spacy.load('en_core_web_sm')
✔ Linking successful
/Users/alex/anaconda3/lib/python3.7/site-packages/en_core_web_sm -->
/Users/alex/anaconda3/lib/python3.7/site-packages/spacy/data/en
You can now load the model via spacy.load('en')
<spacy.lang.en.English at 0x1a28b0f0b8>
%%time
But two cells later:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<timed exec> in <module>
<timed exec> in <listcomp>(.0)
AttributeError: module 'spacy' has no attribute 'en'
Also, just add in another bit, I also tried rolling back to 1.9 for both a conda environment and installed on my HD. Got not love ... but did get some error codes:
y/tests/vocab
copying spacy/tests/vocab/test_vocab_api.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/vocab
copying spacy/tests/vocab/test_add_vectors.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/vocab
copying spacy/tests/vocab/test_lexeme.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/vocab
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/matcher
copying spacy/tests/matcher/test_matcher.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/matcher
copying spacy/tests/matcher/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/matcher
copying spacy/tests/matcher/test_entity_id.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/matcher
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/gold
copying spacy/tests/gold/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/gold
copying spacy/tests/gold/test_lev_align.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/gold
copying spacy/tests/gold/test_biluo.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/gold
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/stringstore
copying spacy/tests/stringstore/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/stringstore
copying spacy/tests/stringstore/test_freeze_string_store.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/stringstore
copying spacy/tests/stringstore/test_stringstore.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/stringstore
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/hu
copying spacy/tests/hu/test_tokenizer.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/hu
copying spacy/tests/hu/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/hu
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/bn
copying spacy/tests/bn/test_tokenizer.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/bn
copying spacy/tests/bn/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/bn
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/nb
copying spacy/tests/nb/test_tokenizer.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/nb
copying spacy/tests/nb/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/nb
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/de
copying spacy/tests/de/test_prefix_suffix_infix.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/de
copying spacy/tests/de/test_exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/de
copying spacy/tests/de/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/de
copying spacy/tests/de/test_text.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/de
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
copying spacy/tests/doc/test_add_entities.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
copying spacy/tests/doc/test_array.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
copying spacy/tests/doc/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
copying spacy/tests/doc/test_doc_api.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
copying spacy/tests/doc/test_token_api.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
copying spacy/tests/doc/test_noun_chunks.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/doc
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fi
copying spacy/tests/fi/test_tokenizer.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fi
copying spacy/tests/fi/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fi
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fr
copying spacy/tests/fr/test_exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fr
copying spacy/tests/fr/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fr
copying spacy/tests/fr/test_text.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/fr
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/es
copying spacy/tests/es/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/es
copying spacy/tests/es/test_text.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/es
copying spacy/tests/es/test_exception.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/es
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/test_contractions.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/test_prefix_suffix_infix.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/test_exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/test_indices.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/test_text.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
copying spacy/tests/en/test_punct.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/en
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue242.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue429.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue859.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue590.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue775.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue912.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue852.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue693.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue957.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue605.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue1061.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue615.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue704.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue891.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue792.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue744.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue595.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue1031.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue740.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue903.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue600.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue995.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue309.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue1207.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue686.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue118.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue54.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue805.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue617.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue401.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue743.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue514.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue736.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue910.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue850.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue801.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue886.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue834.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue781.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue717.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue587.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue361.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue351.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue588.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue759.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue719.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue599.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue589.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue758.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue360.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue999.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
copying spacy/tests/regression/test_issue768.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/regression
creating build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tagger
copying spacy/tests/tagger/test_morph_exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tagger
copying spacy/tests/tagger/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tagger
copying spacy/tests/tagger/test_lemmatizer.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tagger
copying spacy/tests/tagger/test_tag_names.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tagger
copying spacy/tests/tagger/test_spaces.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tagger
creating build/lib.macosx-10.7-x86_64-3.7/spacy/cli/converters
copying spacy/cli/converters/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/cli/converters
copying spacy/cli/converters/conllu2json.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/cli/converters
creating build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_verbs_irreg.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_adverbs_irreg.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_adverbs.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_nouns_irreg.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_adjectives_irreg.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_lemma_rules.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_verbs.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_adjectives.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/en/lemmatizer/_nouns.py -> build/lib.macosx-10.7-x86_64-3.7/spacy/en/lemmatizer
copying spacy/lexeme.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/orth.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/parts_of_speech.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/symbols.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/pipeline.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/tokenizer.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/attrs.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/matcher.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/strings.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/morphology.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/gold.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/vocab.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/typedefs.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/cfile.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/tagger.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/tagger.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/cfile.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/typedefs.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/vocab.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/morphology.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/gold.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/strings.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/tokenizer.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/attrs.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/pipeline.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/symbols.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/parts_of_speech.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/orth.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/structs.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/lexeme.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy
copying spacy/serialize/huffman.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/serialize/bits.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/serialize/packer.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/serialize/packer.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/serialize/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/serialize/bits.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/serialize/huffman.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/serialize
copying spacy/syntax/parser.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/nonproj.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/iterators.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/_state.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/_parse_features.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/stateclass.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/arc_eager.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/ner.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/beam_parser.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/transition_system.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/transition_system.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/beam_parser.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/ner.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/arc_eager.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/stateclass.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/_parse_features.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/iterators.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/_state.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/nonproj.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/syntax/parser.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/syntax
copying spacy/tokens/doc.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tokens/span.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tokens/token.pyx -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tokens/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tokens/token.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tokens/span.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tokens/doc.pxd -> build/lib.macosx-10.7-x86_64-3.7/spacy/tokens
copying spacy/tests/tokenizer/sun.txt -> build/lib.macosx-10.7-x86_64-3.7/spacy/tests/tokenizer
running build_ext
building 'spacy.parts_of_speech' extension
creating build/temp.macosx-10.7-x86_64-3.7
creating build/temp.macosx-10.7-x86_64-3.7/spacy
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/spacy/include -I/Users/alex/anaconda3/envs/language/include/python3.7m -c spacy/parts_of_speech.cpp -o build/temp.macosx-10.7-x86_64-3.7/spacy/parts_of_speech.o -O3 -Wno-strict-prototypes -Wno-unused-function
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
spacy/parts_of_speech.cpp:1637:140: warning: code will never be executed [-Wunreachable-code]
__pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_5); __Pyx_INCREF(__pyx_t_2); __pyx_t_5++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 30; __pyx_clineno = __LINE__; goto __pyx_L4_error;}
^~~~~~~
spacy/parts_of_speech.cpp:1629:139: warning: code will never be executed [-Wunreachable-code]
__pyx_t_2 = PyList_GET_ITEM(__pyx_t_4, __pyx_t_5); __Pyx_INCREF(__pyx_t_2); __pyx_t_5++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 30; __pyx_clineno = __LINE__; goto __pyx_L4_error;}
^~~~~~~
3 warnings generated.
g++ -bundle -undefined dynamic_lookup -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -arch x86_64 build/temp.macosx-10.7-x86_64-3.7/spacy/parts_of_speech.o -o build/lib.macosx-10.7-x86_64-3.7/spacy/parts_of_speech.cpython-37m-darwin.so -Wl,-rpath,@loader_path/../spacy/platform/darwin/lib
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'g++' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for spacy
Running setup.py clean for spacy
Building wheel for murmurhash (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /Users/alex/anaconda3/envs/language/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/setup.py'"'"'; __file__='"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-wheel-0mv2ykhm --python-tag cp37
cwd: /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/
Complete output (36 lines):
running bdist_wheel
running build
running build_py
creating build
creating build/lib.macosx-10.7-x86_64-3.7
creating build/lib.macosx-10.7-x86_64-3.7/murmurhash
copying murmurhash/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/murmurhash
copying murmurhash/about.py -> build/lib.macosx-10.7-x86_64-3.7/murmurhash
creating build/lib.macosx-10.7-x86_64-3.7/murmurhash/tests
copying murmurhash/tests/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/murmurhash/tests
copying murmurhash/tests/test_import.py -> build/lib.macosx-10.7-x86_64-3.7/murmurhash/tests
copying murmurhash/mrmr.pyx -> build/lib.macosx-10.7-x86_64-3.7/murmurhash
copying murmurhash/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/murmurhash
copying murmurhash/mrmr.pxd -> build/lib.macosx-10.7-x86_64-3.7/murmurhash
creating build/lib.macosx-10.7-x86_64-3.7/murmurhash/include
creating build/lib.macosx-10.7-x86_64-3.7/murmurhash/include/murmurhash
copying murmurhash/include/murmurhash/MurmurHash2.h -> build/lib.macosx-10.7-x86_64-3.7/murmurhash/include/murmurhash
copying murmurhash/include/murmurhash/MurmurHash3.h -> build/lib.macosx-10.7-x86_64-3.7/murmurhash/include/murmurhash
running build_ext
building 'murmurhash.mrmr' extension
creating build/temp.macosx-10.7-x86_64-3.7
creating build/temp.macosx-10.7-x86_64-3.7/murmurhash
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/murmurhash/include -I/Users/alex/anaconda3/envs/language/include/python3.7m -c murmurhash/mrmr.cpp -o build/temp.macosx-10.7-x86_64-3.7/murmurhash/mrmr.o -O3 -Wno-strict-prototypes -Wno-unused-function
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
1 warning generated.
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/murmurhash/include -I/Users/alex/anaconda3/envs/language/include/python3.7m -c murmurhash/MurmurHash2.cpp -o build/temp.macosx-10.7-x86_64-3.7/murmurhash/MurmurHash2.o -O3 -Wno-strict-prototypes -Wno-unused-function
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
1 warning generated.
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/murmurhash/include -I/Users/alex/anaconda3/envs/language/include/python3.7m -c murmurhash/MurmurHash3.cpp -o build/temp.macosx-10.7-x86_64-3.7/murmurhash/MurmurHash3.o -O3 -Wno-strict-prototypes -Wno-unused-function
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
1 warning generated.
g++ -bundle -undefined dynamic_lookup -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -arch x86_64 build/temp.macosx-10.7-x86_64-3.7/murmurhash/mrmr.o build/temp.macosx-10.7-x86_64-3.7/murmurhash/MurmurHash2.o build/temp.macosx-10.7-x86_64-3.7/murmurhash/MurmurHash3.o -o build/lib.macosx-10.7-x86_64-3.7/murmurhash/mrmr.cpython-37m-darwin.so
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'g++' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for murmurhash
Running setup.py clean for murmurhash
Building wheel for cymem (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /Users/alex/anaconda3/envs/language/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/cymem/setup.py'"'"'; __file__='"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/cymem/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-wheel-b2rutqj0 --python-tag cp37
cwd: /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/cymem/
Complete output (26 lines):
running bdist_wheel
running build
running build_py
creating build
creating build/lib.macosx-10.7-x86_64-3.7
creating build/lib.macosx-10.7-x86_64-3.7/cymem
copying cymem/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/cymem
copying cymem/about.py -> build/lib.macosx-10.7-x86_64-3.7/cymem
package init file 'cymem/tests/__init__.py' not found (or not a regular file)
creating build/lib.macosx-10.7-x86_64-3.7/cymem/tests
copying cymem/tests/test_import.py -> build/lib.macosx-10.7-x86_64-3.7/cymem/tests
copying cymem/cymem.pyx -> build/lib.macosx-10.7-x86_64-3.7/cymem
copying cymem/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/cymem
copying cymem/cymem.pxd -> build/lib.macosx-10.7-x86_64-3.7/cymem
running build_ext
building 'cymem.cymem' extension
creating build/temp.macosx-10.7-x86_64-3.7
creating build/temp.macosx-10.7-x86_64-3.7/cymem
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/Users/alex/anaconda3/envs/language/include/python3.7m -c cymem/cymem.cpp -o build/temp.macosx-10.7-x86_64-3.7/cymem/cymem.o -O3 -Wno-strict-prototypes -Wno-unused-function
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
1 warning generated.
g++ -bundle -undefined dynamic_lookup -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -arch x86_64 build/temp.macosx-10.7-x86_64-3.7/cymem/cymem.o -o build/lib.macosx-10.7-x86_64-3.7/cymem/cymem.cpython-37m-darwin.so
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'g++' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for cymem
Running setup.py clean for cymem
Building wheel for thinc (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /Users/alex/anaconda3/envs/language/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/thinc/setup.py'"'"'; __file__='"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/thinc/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-wheel-2zlrtgkx --python-tag cp37
cwd: /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/thinc/
Complete output (124 lines):
running bdist_wheel
running build
running build_py
creating build
creating build/lib.macosx-10.7-x86_64-3.7
creating build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/describe.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/check.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/about.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/api.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/loss.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/thinc
creating build/lib.macosx-10.7-x86_64-3.7/thinc/tests
copying thinc/tests/conftest.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests
copying thinc/tests/strategies.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests
copying thinc/tests/test_api_funcs.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests
copying thinc/tests/util.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests
copying thinc/tests/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests
copying thinc/tests/test_util.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests
creating build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_check_exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_model.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_hash_embed.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_pooling.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_imports.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_loss.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_ops.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_mem.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_difference.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_affine.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
copying thinc/tests/unit/test_about.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/unit
creating build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/test_batch_norm.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/test_affine_learns.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/test_mnist.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/test_feed_forward.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/test_shape_check.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
copying thinc/tests/integration/test_basic_tagger.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/tests/integration
creating build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
creating build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/vecs2vecs.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/util.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/pooling.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/vecs2vec.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/mem.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/vec2vec.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/id2vec.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/train.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/_lsuv.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
creating build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/load_nlp.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/datasets.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
creating build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/convolution.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/maxout.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/embed.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/batchnorm.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/difference.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/feed_forward.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/affine.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/model.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/resnet.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/relu.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/static_vectors.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/lstm.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/hash_embed.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/elu.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
copying thinc/neural/_classes/softmax.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural/_classes
creating build/lib.macosx-10.7-x86_64-3.7/thinc/extra/_vendorized
copying thinc/extra/_vendorized/keras_datasets.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra/_vendorized
copying thinc/extra/_vendorized/keras_generic_utils.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra/_vendorized
copying thinc/extra/_vendorized/keras_data_utils.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra/_vendorized
copying thinc/extra/_vendorized/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra/_vendorized
copying thinc/structs.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/typedefs.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/linalg.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/linalg.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/typedefs.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/structs.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/compile_time_constants.pxi -> build/lib.macosx-10.7-x86_64-3.7/thinc
copying thinc/linear/sparse.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/features.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/avgtron.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/serialize.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/linear.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/serialize.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/avgtron.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/features.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/linear/sparse.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/linear
copying thinc/neural/_funcs.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/optimizers.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/ops.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/neural/_funcs.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/neural
copying thinc/extra/mb.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/search.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/cache.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/eg.pyx -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/eg.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/cache.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/search.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
copying thinc/extra/mb.pxd -> build/lib.macosx-10.7-x86_64-3.7/thinc/extra
running build_ext
building 'thinc.linalg' extension
creating build/temp.macosx-10.7-x86_64-3.7
creating build/temp.macosx-10.7-x86_64-3.7/thinc
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/thinc/include -I/Users/alex/anaconda3/envs/language/include/python3.7m -c thinc/linalg.cpp -o build/temp.macosx-10.7-x86_64-3.7/thinc/linalg.o -O3 -Wno-strict-prototypes -Wno-unused-function
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
1 warning generated.
g++ -bundle -undefined dynamic_lookup -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -L/Users/alex/anaconda3/envs/language/lib -arch x86_64 -arch x86_64 build/temp.macosx-10.7-x86_64-3.7/thinc/linalg.o -o build/lib.macosx-10.7-x86_64-3.7/thinc/linalg.cpython-37m-darwin.so
clang: warning: libstdc++ is deprecated; move to libc++ with a minimum deployment target of OS X 10.9 [-Wdeprecated]
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'g++' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for thinc
Running setup.py clean for thinc
Building wheel for cytoolz (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /Users/alex/anaconda3/envs/language/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/cytoolz/setup.py'"'"'; __file__='"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/cytoolz/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-wheel-0sox_86f --python-tag cp37
cwd: /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/cytoolz/
Complete output (144 lines):
running bdist_wheel
running build
running build_py
creating build
creating build/lib.macosx-10.7-x86_64-3.7
creating build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/compatibility.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/utils_test.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/_version.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/_signatures.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
creating build/lib.macosx-10.7-x86_64-3.7/cytoolz/curried
copying cytoolz/curried/operator.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/curried
copying cytoolz/curried/__init__.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/curried
copying cytoolz/curried/exceptions.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/curried
copying cytoolz/itertoolz.pyx -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/dicttoolz.pyx -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/functoolz.pyx -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/recipes.pyx -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/utils.pyx -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/utils.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/__init__.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/recipes.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/functoolz.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/dicttoolz.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/cpython.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
copying cytoolz/itertoolz.pxd -> build/lib.macosx-10.7-x86_64-3.7/cytoolz
creating build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_none_safe.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_utils.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_curried.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_compatibility.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_embedded_sigs.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_functoolz.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_inspect_args.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_doctests.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_tlz.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_signatures.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/dev_skip_test.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_recipes.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_docstrings.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_dev_skip_test.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_dicttoolz.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_serialization.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_curried_toolzlike.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
copying cytoolz/tests/test_itertoolz.py -> build/lib.macosx-10.7-x86_64-3.7/cytoolz/tests
running build_ext
building 'cytoolz.dicttoolz' extension
creating build/temp.macosx-10.7-x86_64-3.7
creating build/temp.macosx-10.7-x86_64-3.7/cytoolz
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -c cytoolz/dicttoolz.c -o build/temp.macosx-10.7-x86_64-3.7/cytoolz/dicttoolz.o
cytoolz/dicttoolz.c:8277:65: error: too many arguments to function call, expected 3, have 4
return (*((__Pyx_PyCFunctionFast)meth)) (self, args, nargs, NULL);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~
/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include/stddef.h:105:16: note: expanded from macro 'NULL'
# define NULL ((void*)0)
^~~~~~~~~~
cytoolz/dicttoolz.c:9053:21: error: no member named 'exc_type' in 'struct _ts'
*type = tstate->exc_type;
~~~~~~ ^
cytoolz/dicttoolz.c:9054:22: error: no member named 'exc_value' in 'struct _ts'; did you mean 'curexc_value'?
*value = tstate->exc_value;
^~~~~~~~~
curexc_value
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:240:15: note: 'curexc_value' declared here
PyObject *curexc_value;
^
cytoolz/dicttoolz.c:9055:19: error: no member named 'exc_traceback' in 'struct _ts'; did you mean 'curexc_traceback'?
*tb = tstate->exc_traceback;
^~~~~~~~~~~~~
curexc_traceback
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:241:15: note: 'curexc_traceback' declared here
PyObject *curexc_traceback;
^
cytoolz/dicttoolz.c:9062:24: error: no member named 'exc_type' in 'struct _ts'
tmp_type = tstate->exc_type;
~~~~~~ ^
cytoolz/dicttoolz.c:9063:25: error: no member named 'exc_value' in 'struct _ts'; did you mean 'curexc_value'?
tmp_value = tstate->exc_value;
^~~~~~~~~
curexc_value
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:240:15: note: 'curexc_value' declared here
PyObject *curexc_value;
^
cytoolz/dicttoolz.c:9064:22: error: no member named 'exc_traceback' in 'struct _ts'; did you mean 'curexc_traceback'?
tmp_tb = tstate->exc_traceback;
^~~~~~~~~~~~~
curexc_traceback
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:241:15: note: 'curexc_traceback' declared here
PyObject *curexc_traceback;
^
cytoolz/dicttoolz.c:9065:13: error: no member named 'exc_type' in 'struct _ts'
tstate->exc_type = type;
~~~~~~ ^
cytoolz/dicttoolz.c:9066:13: error: no member named 'exc_value' in 'struct _ts'; did you mean 'curexc_value'?
tstate->exc_value = value;
^~~~~~~~~
curexc_value
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:240:15: note: 'curexc_value' declared here
PyObject *curexc_value;
^
cytoolz/dicttoolz.c:9067:13: error: no member named 'exc_traceback' in 'struct _ts'; did you mean 'curexc_traceback'?
tstate->exc_traceback = tb;
^~~~~~~~~~~~~
curexc_traceback
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:241:15: note: 'curexc_traceback' declared here
PyObject *curexc_traceback;
^
cytoolz/dicttoolz.c:9122:24: error: no member named 'exc_type' in 'struct _ts'
tmp_type = tstate->exc_type;
~~~~~~ ^
cytoolz/dicttoolz.c:9123:25: error: no member named 'exc_value' in 'struct _ts'; did you mean 'curexc_value'?
tmp_value = tstate->exc_value;
^~~~~~~~~
curexc_value
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:240:15: note: 'curexc_value' declared here
PyObject *curexc_value;
^
cytoolz/dicttoolz.c:9124:22: error: no member named 'exc_traceback' in 'struct _ts'; did you mean 'curexc_traceback'?
tmp_tb = tstate->exc_traceback;
^~~~~~~~~~~~~
curexc_traceback
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:241:15: note: 'curexc_traceback' declared here
PyObject *curexc_traceback;
^
cytoolz/dicttoolz.c:9125:13: error: no member named 'exc_type' in 'struct _ts'
tstate->exc_type = local_type;
~~~~~~ ^
cytoolz/dicttoolz.c:9126:13: error: no member named 'exc_value' in 'struct _ts'; did you mean 'curexc_value'?
tstate->exc_value = local_value;
^~~~~~~~~
curexc_value
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:240:15: note: 'curexc_value' declared here
PyObject *curexc_value;
^
cytoolz/dicttoolz.c:9127:13: error: no member named 'exc_traceback' in 'struct _ts'; did you mean 'curexc_traceback'?
tstate->exc_traceback = local_tb;
^~~~~~~~~~~~~
curexc_traceback
/Users/alex/anaconda3/envs/language/include/python3.7m/pystate.h:241:15: note: 'curexc_traceback' declared here
PyObject *curexc_traceback;
^
16 errors generated.
error: command 'gcc' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for cytoolz
Running setup.py clean for cytoolz
Failed to build spacy murmurhash cymem thinc cytoolz
ERROR: en-core-web-sm 2.2.0 has requirement spacy>=2.2.0, but you'll have spacy 1.9.0 which is incompatible.
Installing collected packages: murmurhash, cymem, preshed, wrapt, toolz, cytoolz, plac, dill, termcolor, pathlib, thinc, pip, ujson, regex, webencodings, html5lib, ftfy, spacy
Found existing installation: murmurhash 1.0.2
Uninstalling murmurhash-1.0.2:
Successfully uninstalled murmurhash-1.0.2
Running setup.py install for murmurhash ... error
ERROR: Command errored out with exit status 1:
command: /Users/alex/anaconda3/envs/language/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/setup.py'"'"'; __file__='"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-record-9jucrq7v/install-record.txt --single-version-externally-managed --compile
cwd: /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/
Complete output (9 lines):
running install
running build
running build_py
running build_ext
building 'murmurhash.mrmr' extension
gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include -arch x86_64 -I/Users/alex/anaconda3/envs/language/include/python3.7m -I/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/murmurhash/include -I/Users/alex/anaconda3/envs/language/include/python3.7m -c murmurhash/mrmr.cpp -o build/temp.macosx-10.7-x86_64-3.7/murmurhash/mrmr.o -O3 -Wno-strict-prototypes -Wno-unused-function
clang: error: no such file or directory: 'murmurhash/mrmr.cpp'
clang: error: no input files
error: command 'gcc' failed with exit status 1
----------------------------------------
Rolling back uninstall of murmurhash
Moving to /Users/alex/anaconda3/envs/language/lib/python3.7/site-packages/murmurhash-1.0.2.dist-info/
from /Users/alex/anaconda3/envs/language/lib/python3.7/site-packages/~urmurhash-1.0.2.dist-info
Moving to /Users/alex/anaconda3/envs/language/lib/python3.7/site-packages/murmurhash/
from /Users/alex/anaconda3/envs/language/lib/python3.7/site-packages/~urmurhash
ERROR: Command errored out with exit status 1: /Users/alex/anaconda3/envs/language/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/setup.py'"'"'; __file__='"'"'/private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-install-2latv63q/murmurhash/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/4z/tfmyzdwj42v90t3h2lzpx40w0000gn/T/pip-record-9jucrq7v/install-record.txt --single-version-externally-managed --compile Check the logs for full command output.
(language) alex@Alexs-MacBook-Pro models %
See the bug here: https://github.com/explosion/spaCy/issues/1512
I tried to change it to
space.lang.en.STOP_WORDS
but that did not work either.