Skip to content

Commit

Permalink
Add Node.js install instructions to DFP Viz readme (#828)
Browse files Browse the repository at this point in the history
+ Add Node.js install instructions because it was removed from runtime container
+ Will add docker compose target for this in 23.07 to have it pre-installed in container

Authors:
  - Eli Fajardo (https://github.com/efajardo-nv)

Approvers:
  - David Gardner (https://github.com/dagardner-nv)

URL: #828
  • Loading branch information
efajardo-nv authored Mar 30, 2023
1 parent 43c3ef0 commit 6e9170c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/digital_fingerprinting/visualization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,16 @@ python dfp_viz_duo_pipeline.py \
While still in the `morpheus_pipeline` container, perform the following steps to install and run the DFP Visualization Tool:

### Install dependencies

```
# Install Node.js
apt update
curl -sL https://deb.nodesource.com/setup_16.x | bash
apt install nodejs
```
```
export LD_LIBRARY_PATH=/opt/conda/envs/morpheus/lib:${LD_LIBRARY_PATH}
```
```
cd viz
```
Expand Down

0 comments on commit 6e9170c

Please sign in to comment.