{% extends 'base/layout.html' %} {% block title %}{{ plugin.name }} Added{% endblock %} {% block breadcrumbs %}
The package has been added to requirements-extra.txt. You need to restart the NetBox container to install and activate it.
Add the plugin to your plugins configuration:
{{ config_snippet }}
Restart the NetBox container to install the package and load the plugin:
cd /path/to/netbox-docker
docker-compose down && docker-compose up -d
The container will automatically install packages from requirements-extra.txt on startup, run migrations, and collect static files.
{% else %}The package has been installed via pip, but you need to complete the following steps to activate it.
Add the following to your NetBox configuration file:
{{ config_snippet }}
Execute the following command to apply any database changes:
{{ commands.migrate }}
Execute the following command to collect plugin static assets:
{{ commands.collectstatic }}
Restart your NetBox service to load the plugin:
# Docker Compose
{{ commands.restart_docker }}
# Systemd
{{ commands.restart_systemd }}
{% endif %}