Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stanfordnlp/stanza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bauer <horatio@gmail.com>2022-09-14 20:23:42 +0300
committerJohn Bauer <horatio@gmail.com>2022-09-14 20:23:42 +0300
commitb9d75cc6a3e12de69ab6734295a3dcbf9fc919fc (patch)
tree5518607575edfd1f7d8460e13cbde310d57487e2
parentf3a9a7226a0367c82f1d0f5483b106ccc08d6b32 (diff)
Update a couple versions in the README.md to better reflect reality - we support 3.8 & 3.9 on conda and CoreNLP is past 4.1.0
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2549a92c..8ae5c8df 100644
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ To install Stanza via Anaconda, use the following conda command:
conda install -c stanfordnlp stanza
```
-Note that for now installing Stanza via Anaconda does not work for Python 3.8. For Python 3.8 please use pip installation.
+Note that for now installing Stanza via Anaconda does not work for Python 3.10. For Python 3.10 please use pip installation.
### From Source
@@ -140,7 +140,7 @@ There are a few initial setup steps.
* Download [Stanford CoreNLP](https://stanfordnlp.github.io/CoreNLP/) and models for the language you wish to use
* Put the model jars in the distribution folder
-* Tell the Python code where Stanford CoreNLP is located by setting the `CORENLP_HOME` environment variable (e.g., in *nix): `export CORENLP_HOME=/path/to/stanford-corenlp-4.1.0`
+* Tell the Python code where Stanford CoreNLP is located by setting the `CORENLP_HOME` environment variable (e.g., in *nix): `export CORENLP_HOME=/path/to/stanford-corenlp-4.5.1`
We provide [comprehensive examples](https://stanfordnlp.github.io/stanza/corenlp_client.html) in our documentation that show how one can use CoreNLP through Stanza and extract various annotations from it.