From 3b7854691a0f45c23de516ec60d0d89016aab318 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Fri, 28 Jun 2024 10:29:45 -0700 Subject: [PATCH 1/2] jq and bc are already installed in the container --- docs/source/developer_guide/contributing.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/source/developer_guide/contributing.md b/docs/source/developer_guide/contributing.md index 66ad68fcb6..a4701023d6 100644 --- a/docs/source/developer_guide/contributing.md +++ b/docs/source/developer_guide/contributing.md @@ -144,9 +144,6 @@ This workflow utilizes a Docker container to set up most dependencies ensuring a Then once the container is started you will need to install some extra packages to enable launching Docker containers: ```bash ./external/utilities/docker/install_docker.sh - - # Install utils for checking output - apt install -y jq bc ``` 3. Compile Morpheus From e90b971299571f5c36db4738b2ac9e0bcdffcb27 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Fri, 28 Jun 2024 10:34:27 -0700 Subject: [PATCH 2/2] Remove section about running pip install --- docs/source/developer_guide/contributing.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/docs/source/developer_guide/contributing.md b/docs/source/developer_guide/contributing.md index a4701023d6..7d575c6d0f 100644 --- a/docs/source/developer_guide/contributing.md +++ b/docs/source/developer_guide/contributing.md @@ -150,17 +150,13 @@ This workflow utilizes a Docker container to set up most dependencies ensuring a ```bash ./scripts/compile.sh ``` - This script will run both CMake Configure with default options and CMake build. -4. Install Morpheus - ```bash - pip install -e /workspace - ``` - Once Morpheus has been built, it can be installed into the current virtual environment. -5. [Run Morpheus](../getting_started.md#running-morpheus) + This script will run CMake Configure with default options, the CMake build and install Morpheus into the environment. + +4. [Run Morpheus](../getting_started.md#running-morpheus) ```bash morpheus run pipeline-nlp ... ``` - At this point, Morpheus can be fully used. Any changes to Python code will not require a rebuild. Changes to C++ code will require calling `./scripts/compile.sh`. Installing Morpheus is only required once per virtual environment. + At this point, Morpheus can be fully used. Any changes to Python code will not require a rebuild. Changes to C++ code will require calling `./scripts/compile.sh`. ### Build in a Conda Environment