Update README.rst

This commit is contained in:
Matthew Honnibal 2016-10-21 20:53:50 +11:00 committed by GitHub
parent 296897ad42
commit 9132546c21

View File

@ -78,20 +78,11 @@ Install spaCy
============= =============
spaCy is compatible with 64-bit CPython 2.6+/3.3+ and runs on Unix/Linux, OS X spaCy is compatible with 64-bit CPython 2.6+/3.3+ and runs on Unix/Linux, OS X
and Windows. Source and binary packages are available via and Windows. Source packages are available via
`pip <https://pypi.python.org/pypi/spacy>`_ and `conda <https://anaconda.org/spacy/spacy>`_. `pip <https://pypi.python.org/pypi/spacy>`_. Please make sure that
If there are no binary packages for your platform available please make sure that
you have a working build enviroment set up. See notes on Ubuntu, OS X and Windows you have a working build enviroment set up. See notes on Ubuntu, OS X and Windows
for details. for details.
conda
-----
.. code:: bash
conda config --add channels spacy # only needed once
conda install spacy
pip pip
--- ---
@ -100,12 +91,6 @@ avoid modifying system state:
.. code:: bash .. code:: bash
# make sure you are using a recent pip/virtualenv version
python -m pip install -U pip virtualenv
virtualenv .env
source .env/bin/activate
pip install spacy pip install spacy
Python packaging is awkward at the best of times, and it's particularly tricky with Python packaging is awkward at the best of times, and it's particularly tricky with
@ -120,17 +105,10 @@ English and German, named ``en`` and ``de``, are available.
.. code:: bash .. code:: bash
python -m spacy.en.download python -m spacy.en.download all
python -m spacy.de.download python -m spacy.de.download all
sputnik --name spacy en_glove_cc_300_1m_vectors # For better word vectors
Then check whether the model was successfully installed: The download command fetches about 1 GB of data which it installs
.. code:: bash
python -c "import spacy; spacy.load('en'); print('OK')"
The download command fetches and installs about 500 MB of data which it installs
within the ``spacy`` package directory. within the ``spacy`` package directory.
Upgrading spaCy Upgrading spaCy
@ -138,13 +116,6 @@ Upgrading spaCy
To upgrade spaCy to the latest release: To upgrade spaCy to the latest release:
conda
-----
.. code:: bash
conda update spacy
pip pip
--- ---
@ -183,7 +154,7 @@ system. See notes on Ubuntu, OS X and Windows for details.
pip install -r requirements.txt pip install -r requirements.txt
pip install -e . pip install -e .
Compared to regular install via pip and conda `requirements.txt <requirements.txt>`_ Compared to regular install via pip `requirements.txt <requirements.txt>`_
additionally installs developer dependencies such as cython. additionally installs developer dependencies such as cython.
Ubuntu Ubuntu