Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Node.js install instructions to DFP Viz readme #828

Merged
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