spacy.load('en_core_web_sm')
from pyresparser import ResumeParser
data = ResumeParser('Resume.pdf').get_extracted_data()
OSError: [E053] Could not read config.cfg from C:\Users\Kumaran\anaconda3\envs\nlp\lib\site-packages\pyresparser\config.cfg
OSError Traceback (most recent call last)
<ipython-input-3-941548297df0> in <module>
1 from pyresparser import ResumeParser
----> 2 data = ResumeParser('Resume.pdf').get_extracted_data()
~\anaconda3\envs\nlp\lib\site-packages\pyresparser\resume_parser.py in __init__(self, resume, skills_file, custom_regex)
19 ):
20 nlp = spacy.load('en_core_web_sm')
---> 21 custom_nlp = spacy.load(os.path.dirname(os.path.abspath(__file__)))
22 self.__skills_file = skills_file
23 self.__custom_regex = custom_regex
~\anaconda3\envs\nlp\lib\site-packages\spacy\__init__.py in load(name, disable, exclude, config)
45 RETURNS (Language): The loaded nlp object.
46 """
---> 47 return util.load_model(name, disable=disable, exclude=exclude, config=config)
48
49
To solve the issues, install these versions:
pip install nltk
pip install spacy==2.3.5
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.3.1/en_core_web_sm-2.3.1.tar.gz
pip install pyresparser
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With