Skip to content

Commit

Permalink
Use MORPHEUS_ROOT env var not MORPHEUS_HOME (nv-morpheus#8)
Browse files Browse the repository at this point in the history
* Use MORPHEUS_ROOT env var not MORPHEUS_HOME

* Use MORPHEUS_ROOT not MORPHEUS_HOME
  • Loading branch information
dagardner-nv authored Apr 22, 2022
1 parent 09eb17f commit ed9c0d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ All of the following instructions assume several variables have been set:
### Clone the repository and pull large file data from Git LFS

```bash
MORPHEUS_HOME=$(pwd)/morpheus
git clone https://github.com/NVIDIA/Morpheus.git $MORPHEUS_HOME
cd $MORPHEUS_HOME
MORPHEUS_ROOT=$(pwd)/morpheus
git clone https://github.com/NVIDIA/Morpheus.git $MORPHEUS_ROOT
cd $MORPHEUS_ROOT
```
The large model and data files in this repo are stored using [Git Large File Storage (LFS)](https://git-lfs.github.com/). These files will be required for running the training/validation scripts and example pipelines for the Morpheus pre-trained models.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ git lfs install
#### Clone the Repository

```bash
MORPHEUS_HOME=$(pwd)/morpheus
git clone https://github.com/NVIDIA/Morpheus.git $MORPHEUS_HOME
cd $MORPHEUS_HOME
MORPHEUS_ROOT=$(pwd)/morpheus
git clone https://github.com/NVIDIA/Morpheus.git $MORPHEUS_ROOT
cd $MORPHEUS_ROOT
```

**Note:** If the repository was cloned before `Git LFS` was installed, you can ensure you have downloaded the LFS files with the command:
Expand Down

0 comments on commit ed9c0d4

Please sign in to comment.