You can install this plugin from the command line with PyPI.

The following commands may be helpful; always refer to the plugin's own documentation and the Installing a Plugin unit of the NetBox documentation.

1. Enter the NetBox virtual environment and install the plugin package:

source /opt/netbox/venv/bin/activate
pip install {{ plugin.slug }}

2. In /opt/netbox/netbox/netbox/configuration.py, add the plugin to the PLUGINS list:

PLUGINS=[
"{{ plugin.config_name }}",
]

3. Still from the NetBox virtual environment, run database migrations and collect static files:

python3 /opt/netbox/netbox/manage.py migrate
python3 /opt/netbox/netbox/manage.py collectstatic

4. Restart the NetBox services to complete the plugin installation:

sudo systemctl restart netbox netbox-rq