🌐
PyPI
pypi.org › project › spacy
spacy · PyPI
Using pip, spaCy releases are available as source packages and binary wheels.
      » pip install spacy
    
Published   Nov 17, 2025
Version   3.8.11
Homepage   https://spacy.io

software library for natural language processing

spaCy Tailored Pipelines
Advanced NLP with spaCy: A free online course
pypi Version
conda Version
spaCy (/speɪˈsiː/ spay-SEE) is an open-source software library for advanced natural language processing, written in the programming languages Python and Cython. The library is published under the MIT license and its main … Wikipedia
Factsheet
spaCy
Original author Matthew Honnibal
Developers Explosion AI, various
Factsheet
spaCy
Original author Matthew Honnibal
Developers Explosion AI, various
🌐
spaCy
spacy.io › usage
Install spaCy · spaCy Usage Documentation
The other way to install spaCy is to clone its GitHub repository and build it from source. That is the common way if you want to make changes to the code base. You’ll need to make sure that you have a development environment consisting of a Python distribution including header files, a compiler, pip and git installed.
🌐
spaCy
spacy.io › usage › models
Models & Languages · spaCy Usage Documentation
While spaCy provides a range of useful helpers for downloading and loading pipeline packages, the underlying functionality is entirely based on native Python packaging. This allows your application to handle a spaCy pipeline like any other package dependency. spaCy’s built-in download command is mostly intended as a convenient, interactive wrapper.
🌐
GeeksforGeeks
geeksforgeeks.org › python › install-specific-version-of-spacy-using-python-pip
Install Specific Version of Spacy using Python PIP - GeeksforGeeks
July 23, 2025 - Below are the commands to install a particular version, using version 3.2.3 of SpaCy as an example: pip install spacy==3.2.3 # Windows pip3 install spacy==3.2.3 # MacOS
🌐
GitHub
github.com › explosion › spaCy
GitHub - explosion/spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in Python
Using pip, spaCy releases are available as source packages and binary wheels.
Starred by 32.9K users
Forked by 4.6K users
Languages   Python 54.1% | MDX 31.2% | Cython 10.5% | JavaScript 2.6% | Sass 0.8% | TypeScript 0.4%
🌐
spaCy
spacy.io
spaCy · Industrial-strength Natural Language Processing in Python
Get a custom spaCy pipeline, tailor-made for your NLP problem by spaCy's core developers.
Find elsewhere
🌐
Python.org
discuss.python.org › python help
Install spacy in python - Python Help - Discussions on Python.org
August 30, 2021 - Hey, I tried to install spacy in python. It worked out and I can find it in the pip list in my terminal. But now if i try to run my python programme there is an error that says “no module named spacy”. I don’t know what …
🌐
spaCy
spacy.io › models › en
English · spaCy Models Documentation
Trained Pipelines › German · Trained Pipelines › Greek · Trained Pipelines › Italian · Trained Pipelines › Japanese · Trained Pipelines › Korean · Trained Pipelines › Lithuanian · Trained Pipelines › Macedonian · Trained Pipelines › Multi-language ·
🌐
PyPI
pypi.org › project › spacy-llm
spacy-llm · PyPI
This package integrates Large Language Models (LLMs) into spaCy, featuring a modular system for fast prototyping and prompting, and turning unstructured responses into robust outputs for various NLP tasks, no training data required.
      » pip install spacy-llm
    
Published   Jan 13, 2025
Version   0.7.3
🌐
ProjectPro
projectpro.io › recipes › install-and-use-spacy-models
How to install and use Spacy models? -
September 6, 2023 - The following steps will help you understand how to install Spacy in Python. ... The pip install en_core_web_sm command is used to install en_core_web_sm model in SpaCy.
🌐
Codidact
software.codidact.com › posts › 292814
I can't install the Spacy library using the terminal in VSCode on Windows 10 - Software Development
I have followed the instructions from the official Visual Studio Code website for Python and Spacy as well. I have installed vs_buildsTools to have a C++ compiler too, But I cannot continue, i have always the same issue. ... Ok the solution is installed a older version, on my case python 3.12.6, in the virtual environment that you have created and when you use in the terminal pip install spacy it donwloads correctly.
🌐
CodeSignal
codesignal.com › learn › courses › building-an-nlp-pipeline-with-spacy-for-token-classification › lessons › installing-and-getting-started-with-spacy-for-nlp
Installing and Getting Started with spaCy for NLP
To get started with spaCy, you need to install the library on your device. You can install spaCy by running the following pip command in your terminal or command prompt:
🌐
Real Python
realpython.com › natural-language-processing-spacy-python
Natural Language Processing With spaCy in Python – Real Python
February 1, 2025 - You can install spaCy using pip, a Python package manager. It’s a good idea to use a virtual environment to avoid depending on system-wide packages.
🌐
TutorialsPoint
tutorialspoint.com › spacy › spacy_getting_started.htm
spaCy - Getting Started
This is an experimental and alpha release of spaCy via a separate channel named spacy-nightly. It reflects future spaCy and cannot be use for production use. To prevent potential conflicts, try to use a fresh virtual environment. You can use the below given pip command to install it −
🌐
Scds
learn.scds.ca › text-analysis-2 › lessons › install.html
Installing SpaCy | Identifying Proper Nouns with Named Entity Recognition
pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_trf-3.2.0/en_core_web_trf-3.2.0-py3-none-any.whl
🌐
Stack Overflow
stackoverflow.com › questions › 74531051 › python-packages-not-installed
spacy - Python Packages not installed - Stack Overflow
Make sure you are installing into the same python enivronment as you are running python in. Use python -m pip install spacy; python filename.py to be sure the python is the same