OSError: [E053] Could not read config file #13188
Unanswered
kishoreganth
asked this question in
Help: Installation
Replies: 1 comment
-
From the message ( |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Below is the version in my system.
spaCy version 3.7.2
Platform Windows-10-10.0.19045
Python version 3.9.8
Pipelines en_core_web_sm (3.7.1)
UserWarning: [W094] Model 'en_training' (0.0.0) specifies an under-constrained spaCy version requirement: >=2.1.4. This can lead to compatibility problems with older versions, or as new spaCy versions are released, because the model may say it's compatible when it's not. Consider changing the "spacy_version" in your meta.json to a version range, with a lower and upper pin. For example: >=3.7.2,<3.8.0
warnings.warn(warn_msg)
Traceback (most recent call last):
File "c:\Users\kisho\PycharmProjects\Resume_HR\app.py", line 11, in
data = ResumeParser(path).get_extracted_data()
File "c:\Users\kisho\PycharmProjects\Resume_HR.venv\lib\site-packages\pyresparser\resume_parser.py", line 21, in init
custom_nlp = spacy.load(os.path.dirname(os.path.abspath(file)))
File "c:\Users\kisho\PycharmProjects\Resume_HR.venv\lib\site-packages\spacy_init_.py", line 51, in load
return util.load_model(
File "c:\Users\kisho\PycharmProjects\Resume_HR.venv\lib\site-packages\spacy\util.py", line 467, in load_model
return load_model_from_path(Path(name), **kwargs) # type: ignore[arg-type]
File "c:\Users\kisho\PycharmProjects\Resume_HR.venv\lib\site-packages\spacy\util.py", line 538, in load_model_from_path
config = load_config(config_path, overrides=overrides)
File "c:\Users\kisho\PycharmProjects\Resume_HR.venv\lib\site-packages\spacy\util.py", line 714, in load_config
raise IOError(Errors.E053.format(path=config_path, name="config file"))
OSError: [E053] Could not read config file
Beta Was this translation helpful? Give feedback.
All reactions