From 9bbc41c1e3ec6fbd3285bce83d726ed1f715baeb Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 8 Feb 2016 13:51:13 +0100 Subject: [PATCH] * Fix conda install instructions --- website/src/jade/home/_installation.jade | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/website/src/jade/home/_installation.jade b/website/src/jade/home/_installation.jade index 92edfe303..f49388e4f 100644 --- a/website/src/jade/home/_installation.jade +++ b/website/src/jade/home/_installation.jade @@ -15,13 +15,13 @@ mixin Option(name, open) +Option("conda", true) - Sometimes conda is not up to date with the latest release. If you can't get the latest version on conda, you can always fall back to the pip install. - pre.language-bash: code | $ conda config --add channels spacy | $ conda install spacy | $ python -m spacy.en.download + | Sometimes conda is not up to date with the latest release. If you can't get the latest version on conda, you can always fall back to the pip install. + +Option("pip and virtualenv", true) p With Python 2.7 or Python 3, using Linux or OSX, ensure that you have the following packages installed: @@ -38,6 +38,13 @@ mixin Option(name, open) | The download command fetches and installs about 500mb of data, for | the parser model and word vectors, which it installs within the spacy | package directory. + + p Usually you'll want to install spaCy within a #[a(href="https://virtualenv.readthedocs.org/en/latest/") virtualenv], to avoid modifying system state: + + pre.language-bash: code + | virtualenv my_env_dir + | source my_env_dir/bin/activate + +Option("Windows (64 bit)", true)