spaCy/docs/guide/install.rst

23 lines
518 B
ReStructuredText
Raw Normal View History

2014-08-20 19:09:39 +00:00
Installation
============
2014-08-21 14:37:06 +00:00
pip install spacy
-----------------
The easiest way to install is from PyPi via pip::
2014-08-20 19:09:39 +00:00
pip install spacy
2014-08-21 14:37:06 +00:00
git clone http://github.com/honnibal/spaCy.git
----------------------------------------------
2014-08-20 19:09:39 +00:00
Installation From source via `GitHub <https://github.com/honnibal/spaCy>`_, using virtualenv::
$ git clone http://github.com/honnibal/spaCy.git
$ cd spaCy
$ virtualenv .env
$ source .env/bin/activate
$ pip install -r requirements.txt
$ fab make
$ fab test