Search code examples
pythonnlppipversionspacy

How to verify installed spaCy version?


I have installed spaCy with python for my NLP project.

I have installed that using pip. How can I verify installed spaCy version?

using

pip install -U spacy

What is command to verify installed spaCy version?


Solution

  • You can also do python -m spacy info. If you're updating an existing installation, you might want to run python -m spacy validate, to check that the models you already have are compatible with the version you just installed.