Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@ Currently MedCAT v2 is in Beta.
As such, we're not yet pushing to PyPI.
And because of that the current installation command for (only) core MedCAT v2 is:
```
pip install "medcat @ git+https://github.com/CogStack/MedCAT2@v0.7.0"
pip install "medcat @ git+https://github.com/CogStack/MedCAT2@v0.8.0"
```
Do note that **this installs only the core MedCAT v2**.
**It does not necessary dependencies for `spacy`-based tokenizing or MetaCATs or DeID**.
However, all of those are supported as well.
You can install them as follows:
```
pip install "medcat[spacy] @ git+https://github.com/CogStack/MedCAT2@v0.7.0" # for spacy-based tokenizer
pip install "medcat[meta-cat] @ git+https://github.com/CogStack/MedCAT2@v0.7.0" # for MetaCAT
pip install "medcat[deid] @ git+https://github.com/CogStack/MedCAT2@v0.7.0" # for DeID models
pip install "medcat[spacy,meta-cat,deid,rel-cat,dict-ner] @ git+https://github.com/CogStack/MedCAT2@v0.7.0" # for all of the sbove
pip install "medcat[spacy] @ git+https://github.com/CogStack/MedCAT2@v0.8.0" # for spacy-based tokenizer
pip install "medcat[meta-cat] @ git+https://github.com/CogStack/MedCAT2@v0.8.0" # for MetaCAT
pip install "medcat[deid] @ git+https://github.com/CogStack/MedCAT2@v0.8.0" # for DeID models
pip install "medcat[spacy,meta-cat,deid,rel-cat,dict-ner] @ git+https://github.com/CogStack/MedCAT2@v0.8.0" # for all of the sbove
```

PS:
For in the above example, we're installing the MedCAT v2 BETA version of `v0.7.0`.
For in the above example, we're installing the MedCAT v2 BETA version of `v0.8.0`.
The README is unlikely to change after every new release.
If another version is available / required, substitute the version tag as appropriate.

Expand Down