diff --git a/README.rst b/README.rst index 4c4a2e96b..389b4ea14 100644 --- a/README.rst +++ b/README.rst @@ -78,20 +78,11 @@ Install spaCy ============= 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 -`pip `_ and `conda `_. -If there are no binary packages for your platform available please make sure that +and Windows. Source packages are available via +`pip `_. Please make sure that you have a working build enviroment set up. See notes on Ubuntu, OS X and Windows for details. -conda ------ - -.. code:: bash - - conda config --add channels spacy # only needed once - conda install spacy - pip --- @@ -100,12 +91,6 @@ avoid modifying system state: .. 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 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 - python -m spacy.en.download - python -m spacy.de.download - sputnik --name spacy en_glove_cc_300_1m_vectors # For better word vectors + python -m spacy.en.download all + python -m spacy.de.download all -Then check whether the model was successfully installed: - -.. 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 +The download command fetches about 1 GB of data which it installs within the ``spacy`` package directory. Upgrading spaCy @@ -138,13 +116,6 @@ Upgrading spaCy To upgrade spaCy to the latest release: -conda ------ - -.. code:: bash - - conda update spacy - pip --- @@ -183,7 +154,7 @@ system. See notes on Ubuntu, OS X and Windows for details. pip install -r requirements.txt pip install -e . -Compared to regular install via pip and conda `requirements.txt `_ +Compared to regular install via pip `requirements.txt `_ additionally installs developer dependencies such as cython. Ubuntu