E053 Could not read config.cfg Resumeparser

15,806

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
Share:
15,806
Admin
Author by

Admin

Updated on June 28, 2022

Comments

  • Admin
    Admin almost 2 years
    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 
    
  • tursunWali
    tursunWali about 3 years
    your solution worked for me, THANK YOU Bro. Many other solutions throughout web did not worked. I was stuck with this 'spacy.load('en_core_web_sm')' CONFIG.CFG issue for few hours. I was using Colab then.
  • Aravind R
    Aravind R about 2 years
    It' not working for me
  • KittenCrypto
    KittenCrypto almost 2 years
    Thanks! Worked for me too, in Databricks.