OmkarPathak / ResumeParser

A simple resume parser used for extracting information from resumes
MIT License
284 stars 164 forks source link

nltk download word return error #15

Closed loviji closed 5 years ago

loviji commented 5 years ago

python -m nltk nltk.download('words') return an error bash: syntax error near unexpected token `('

msd1810 commented 5 years ago

go to your environment's python console import nltk & download `

import nltk nltk.download('words') [nltk_data] Downloading package words to /home/raja/nltk_data... [nltk_data] Unzipping corpora/words.zip. True `

hope this works

dynamiccarrots commented 5 years ago

msd1810 - Can you explain what you mean by this, are you adding this to a file.

msd1810 commented 5 years ago

msd1810 - Can you explain what you mean by this, are you adding this to a file.

in your python console: import nltk nltk.download('words')

this will download dictionary words in your home folder, you can find nltk_data folder. this data is used for natural language processing

OmkarPathak commented 5 years ago

@loviji @dynamiccarrots are you able to solve this?

dynamiccarrots commented 5 years ago

I was yes, I'm not that experienced in Python and was not in the Python Console. 🤦‍♂

OmkarPathak commented 5 years ago

Closing this issue as you were able to solve the same.