mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 01:16:28 +03:00
Add headline to installation details and move aside
This commit is contained in:
parent
533bb63816
commit
11f52b8b83
|
@ -35,8 +35,9 @@ p
|
||||||
+qs({model: 'de'}) python -m spacy download de
|
+qs({model: 'de'}) python -m spacy download de
|
||||||
+qs({model: 'fr'}) python -m spacy download fr
|
+qs({model: 'fr'}) python -m spacy download fr
|
||||||
|
|
||||||
|
+h(2, "installation") Installation instructions
|
||||||
|
|
||||||
+h(2, "pip") pip
|
+h(3, "pip") pip
|
||||||
+badge("pipy")
|
+badge("pipy")
|
||||||
|
|
||||||
p Using pip, spaCy releases are currently only available as source packages.
|
p Using pip, spaCy releases are currently only available as source packages.
|
||||||
|
@ -44,6 +45,16 @@ p Using pip, spaCy releases are currently only available as source packages.
|
||||||
+code(false, "bash").
|
+code(false, "bash").
|
||||||
pip install -U spacy
|
pip install -U spacy
|
||||||
|
|
||||||
|
+aside("Download models")
|
||||||
|
| After installation you need to download a language model. For more info
|
||||||
|
| and available models, see the #[+a("/docs/usage/models") docs on models].
|
||||||
|
|
||||||
|
+code.o-no-block.
|
||||||
|
python -m spacy download en
|
||||||
|
|
||||||
|
>>> import spacy
|
||||||
|
>>> nlp = spacy.load('en')
|
||||||
|
|
||||||
p
|
p
|
||||||
| When using pip it is generally recommended to install packages in a
|
| When using pip it is generally recommended to install packages in a
|
||||||
| #[code virtualenv] to avoid modifying system state:
|
| #[code virtualenv] to avoid modifying system state:
|
||||||
|
@ -53,7 +64,7 @@ p
|
||||||
source .env/bin/activate
|
source .env/bin/activate
|
||||||
pip install spacy
|
pip install spacy
|
||||||
|
|
||||||
+h(2, "conda") conda
|
+h(3, "conda") conda
|
||||||
+badge("conda")
|
+badge("conda")
|
||||||
|
|
||||||
p
|
p
|
||||||
|
|
Loading…
Reference in New Issue
Block a user