mirror of https://github.com/explosion/spaCy.git
Update README.rst
This commit is contained in:
parent
fc8543167e
commit
3cf094687f
32
README.rst
32
README.rst
|
@ -2,10 +2,9 @@ spaCy: Industrial-strength NLP
|
||||||
******************************
|
******************************
|
||||||
|
|
||||||
spaCy is a library for advanced natural language processing in Python and
|
spaCy is a library for advanced natural language processing in Python and
|
||||||
Cython. `See here <https://spacy.io>`_ for documentation and details. spaCy is built on
|
Cython. spaCy is built on the very latest research, but it isn't researchware.
|
||||||
the very latest research, but it isn't researchware. It was designed from day 1
|
It was designed from day 1 to be used in real products. It's commercial
|
||||||
to be used in real products. It's commercial open-source software, released under
|
open-source software, released under the MIT license.
|
||||||
the MIT license.
|
|
||||||
|
|
||||||
💫 **Version 1.1 out now!** `Read the release notes here. <https://github.com/explosion/spaCy/releases/>`_
|
💫 **Version 1.1 out now!** `Read the release notes here. <https://github.com/explosion/spaCy/releases/>`_
|
||||||
|
|
||||||
|
@ -84,7 +83,7 @@ Supports
|
||||||
========
|
========
|
||||||
|
|
||||||
* CPython 2.6, 2.7, 3.3, 3.4, 3.5 (only 64 bit)
|
* CPython 2.6, 2.7, 3.3, 3.4, 3.5 (only 64 bit)
|
||||||
* OSX
|
* macOS / OS X
|
||||||
* Linux
|
* Linux
|
||||||
* Windows (Cygwin, MinGW, Visual Studio)
|
* Windows (Cygwin, MinGW, Visual Studio)
|
||||||
|
|
||||||
|
@ -94,7 +93,7 @@ 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 packages are available via
|
and Windows. Source packages are available via
|
||||||
`pip <https://pypi.python.org/pypi/spacy>`_. Please make sure that
|
`pip <https://pypi.python.org/pypi/spacy>`_. 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, macOS/OS X and Windows
|
||||||
for details.
|
for details.
|
||||||
|
|
||||||
pip
|
pip
|
||||||
|
@ -180,23 +179,20 @@ Install system-level dependencies via ``apt-get``:
|
||||||
|
|
||||||
sudo apt-get install build-essential python-dev git
|
sudo apt-get install build-essential python-dev git
|
||||||
|
|
||||||
OS X
|
macOS / OS X
|
||||||
----
|
------------
|
||||||
|
|
||||||
Install a recent version of XCode, including the so-called "Command Line Tools".
|
Install a recent version of `XCode <https://developer.apple.com/xcode/>`_,
|
||||||
OS X ships with Python and git preinstalled.
|
including the so-called "Command Line Tools". macOS and OS X ship with Python
|
||||||
|
and git preinstalled.
|
||||||
|
|
||||||
Windows
|
Windows
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Install a version of Visual Studio Express or higher that matches the version
|
Install a version of `Visual Studio Express <https://www.visualstudio.com/vs/visual-studio-express/>`_
|
||||||
that was used to compile your Python interpreter. For official distributions
|
or higher that matches the version that was used to compile your Python
|
||||||
these are VS 2008 (Python 2.7), VS 2010 (Python 3.4) and VS 2015 (Python 3.5).
|
interpreter. For official distributions these are VS 2008 (Python 2.7),
|
||||||
|
VS 2010 (Python 3.4) and VS 2015 (Python 3.5).
|
||||||
If you don't want to install the entire Visual Studio, you can install a
|
|
||||||
stand-alone compiler. Make sure that you install the correct version for
|
|
||||||
your version of Python. See https://wiki.python.org/moin/WindowsCompilers for
|
|
||||||
links to download these.
|
|
||||||
|
|
||||||
Run tests
|
Run tests
|
||||||
=========
|
=========
|
||||||
|
|
Loading…
Reference in New Issue