I do have python 3.7.1 on ubuntu 18.04, using spacy==2.0.18 and prodigy 1.7.1 - right after installation am getting ImportError: cannot import name get_json_validator
am not sure if this might be connected before am getting an RuntimeWarning about the spacy.vocab.Vocab.
/home/marsch/anaconda3/lib/python3.7/importlib/_bootstrap.py:219: RuntimeWarning: spacy.vocab.Vocab size changed, may indicate binary incompatibility. Expected 96 from C header, got 104 from PyObject
return f(*args, **kwds)
Traceback (most recent call last):
File "/home/marsch/anaconda3/lib/python3.7/runpy.py", line 183, in _run_module_as_main
mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
File "/home/marsch/anaconda3/lib/python3.7/runpy.py", line 142, in _get_module_details
return _get_module_details(pkg_main_name, error)
File "/home/marsch/anaconda3/lib/python3.7/runpy.py", line 109, in _get_module_details
__import__(pkg_name)
File "/home/marsch/anaconda3/lib/python3.7/site-packages/prodigy/__init__.py", line 10, in <module>
from . import recipes # noqa
File "/home/marsch/anaconda3/lib/python3.7/site-packages/prodigy/recipes/__init__.py", line 4, in <module>
from . import dep, ner, textcat, pos, compare, terms, generic, image # noqa
File "/home/marsch/anaconda3/lib/python3.7/site-packages/prodigy/recipes/ner.py", line 18, in <module>
from ..models.matcher import PatternMatcher
File "cython_src/prodigy/models/matcher.pyx", line 4, in init prodigy.models.matcher
File "/home/marsch/anaconda3/lib/python3.7/site-packages/spacy/matcher/__init__.py", line 4, in <module>
from .matcher import Matcher # noqa: F401
File "matcher.pyx", line 21, in init spacy.matcher.matcher
ImportError: cannot import name get_json_validator
any ideas whats going wrong here? thank you