OSError: [E050] Can’t find model ‘en_core_web_sm’ error occurs when “spacy model en_core_web_sm is not installed on your system.” This model is needed to do some of my tasks, such as named entity recognition and part-of-speech tagging.
How to fix it?
To fix the OSError: [E050] Can’t find model ‘en_core_web_sm’ error, “install the en_core_web_sm model.”
To install the en_core_web_sm model, you can run the following command in a terminal window:
python -m spacy download en_core_web_sm
Once the model is installed, you should be able to run my code without any errors.
Other reasons for the error
Here are some other possible reasons why you might be getting this error:
- You might have installed the en_core_web_sm model in a different directory. Make sure that the model is installed in the same directory as my code.
- You might have a typo in the import statement. Make sure that the import statement is spelled correctly.
- There might be a problem with your Python installation. Make sure that you have the latest version of Python installed.
If you’re having trouble downloading the model using the command line, manually download it from the spaCy GitHub repository. Once downloaded, you can install it using pip:
pip install /path/to/en_core_web_sm-<version>.tar.gz
If you know where the model is installed, you can also specify the full path to the model when loading it.
nlp = spacy.load('/full/path/to/en_core_web_sm')
Sometimes, reinstalling spaCy and the model can resolve the issue:
pip uninstall spacy
pip install spacy
python -m spacy download en_core_web_sm
If you are still getting this error after trying the above solutions, please contact me, and I will try to help you troubleshoot the issue!
That’s it!

Krunal Lathiya is a seasoned Computer Science expert with over eight years in the tech industry. He boasts deep knowledge in Data Science and Machine Learning. Versed in Python, JavaScript, PHP, R, and Golang. Skilled in frameworks like Angular and React and platforms such as Node.js. His expertise spans both front-end and back-end development. His proficiency in the Python language stands as a testament to his versatility and commitment to the craft.