pyresparser icon indicating copy to clipboard operation
pyresparser copied to clipboard

Resume parser is not working while trying to use in ubuntu server

Open kabilrb opened this issue 3 years ago • 1 comments

We have successfully installed the pyresparser package, but when we tried to import it nltk error is occuring. Please use the NLTK Downloader to obtain the resource: [31m>>> import nltk

nltk.download('stopwords') [0m For more information see: https://www.nltk.org/data.html Attempted to load [93mcorpora/stopwords[0m Searched in:

  • '/home/sbx_user1051/nltk_data'
  • '/var/lang/nltk_data'
  • '/var/lang/share/nltk_data'
  • '/var/lang/lib/nltk_data'
  • '/usr/share/nltk_data'
  • '/usr/local/share/nltk_data'
  • '/usr/lib/nltk_data'
  • '/usr/local/lib/nltk_data'
  • '/root/nltk_data'

kabilrb avatar Jun 07 '22 06:06 kabilrb

This helped me

$ pip install --upgrade nltk
$ python3
>>> import nltk
>>> nltk.download('popular')

Arpan-Kreeti avatar Sep 19 '22 13:09 Arpan-Kreeti