diff --git a/spacy/language.py b/spacy/language.py index 4542eae3b..a90e580ca 100644 --- a/spacy/language.py +++ b/spacy/language.py @@ -278,7 +278,8 @@ class Language(object): path = pathlib.Path(path) if path is True: path = util.get_data_path() / self.lang - + if not path.exists() and 'path' not in overrides: + path = None self.meta = overrides.get('meta', {}) self.path = path