* Fix conda install instructions

This commit is contained in:
Matthew Honnibal 2016-02-08 13:51:13 +01:00
parent 9c24d0e7bb
commit 9bbc41c1e3

View File

@ -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:
@ -39,6 +39,13 @@ mixin Option(name, open)
| 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)
| We've been working on Windows support. Our tests now succeed on 64 bit builds of Windows. Installation from pip should work if you have a C++ compiler installed. Please see the #[a(href="https://github.com/honnibal/spaCy/README-MSVC.txt") README-MSVC.txt] file for instructions on compiling from source.