Skip to content

Commit

Permalink
Change "Pypi" to "PyPI" and add a vale accept keyword for it
Browse files Browse the repository at this point in the history
Signed-off-by: Anuradha Karuppiah <[email protected]>
  • Loading branch information
AnuradhaKaruppiah committed Oct 21, 2024
1 parent dba406c commit c2af3a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions ci/vale/styles/config/vocabularies/morpheus/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ LLM(s?)
# https://github.com/logpai/loghub/
Loghub
Milvus
PyPI
[Mm]ixin
MLflow
Morpheus
Expand Down
12 changes: 6 additions & 6 deletions docs/source/conda_packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ conda config --env --add channels conda-forge &&\
conda install -c nvidia morpheus-core
```
The `morpheus-core` Conda package installs the `morpheus` python package. It also pulls down all the necessary Conda runtime dependencies for the core stages including [`mrc`](https://anaconda.org/nvidia/mrc) and [`libmrc`](https://anaconda.org/nvidia/libmrc).
### Install additional `Pypi` dependencies
Some of the stages in the core library require additional dependencies that are hosted on `Pypi`. These dependencies are included as a requirements file in the `morpheus` python package. The requirements files can be located and installed by running the following command:
### Install additional PyPI dependencies
Some of the stages in the core library require additional dependencies that are hosted on PyPI. These dependencies are included as a requirements file in the `morpheus` python package. The requirements files can be located and installed by running the following command:
```bash
python3 <<EOF
import importlib.resources
Expand Down Expand Up @@ -80,8 +80,8 @@ conda config --env --add channels conda-forge &&\
conda install -c nvidia morpheus-dfp
```
The `morpheus-dfp` Conda package installs the `morpheus_dfp` python package. It also pulls down all the necessary Conda runtime dependencies including [`morpheus-core`](https://anaconda.org/nvidia/morpheus-core).
### Install additional `Pypi` dependencies
Some of the DFP stages in the library require additional dependencies that are hosted on `Pypi`. These dependencies are included as a requirements file in the `morpheus_dfp` python package. And can be installed by running the following command:
### Install additional PyPI dependencies
Some of the DFP stages in the library require additional dependencies that are hosted on PyPI. These dependencies are included as a requirements file in the `morpheus_dfp` python package. And can be installed by running the following command:
```bash
python3 <<EOF
import importlib.resources
Expand Down Expand Up @@ -113,8 +113,8 @@ conda config --env --add channels conda-forge &&\
conda install -c nvidia morpheus-llm
```
The `morpheus-llm` Conda package installs the `morpheus_llm` python package. It also pulls down all the necessary Conda packages including [`morpheus-core`](https://anaconda.org/nvidia/morpheus-core).
### Install additional `Pypi` dependencies
Some of the stages in the library require additional dependencies that are hosted on `Pypi`. These dependencies are included as a requirements file in the `morpheus_llm` python package. And can be installed by running the following command:
### Install additional PyPI dependencies
Some of the stages in the library require additional dependencies that are hosted on PyPI. These dependencies are included as a requirements file in the `morpheus_llm` python package. And can be installed by running the following command:
```bash
python3 <<EOF
import importlib.resources
Expand Down

0 comments on commit c2af3a1

Please sign in to comment.