Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

E053 Could not read config.cfg Resumeparser

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 
like image 734
kumaran k Avatar asked Feb 11 '21 06:02

kumaran k


1 Answers

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
like image 112
kumaran k Avatar answered Nov 18 '22 10:11

kumaran k