{% extends '500.html' %} {% load i18n %} {% block message %}
{% trans "A module import error occurred during this request. Common causes include the following:" %}
{% trans "Missing required packages" %}.
{% blocktrans trimmed with req_file="requirements.txt" local_req_file="local_requirements.txt" pip_cmd="pip freeze" %}
This installation of NetBox might be missing one or more required Python packages. These packages are listed in
{{ req_file }} and {{ local_req_file }}, and are normally installed as part of the
installation or upgrade process. To verify installed packages, run {{ pip_cmd }} from the console and
compare the output to the list of required packages.
{% endblocktrans %}
{% trans "WSGI service not restarted after upgrade" %}. {% blocktrans trimmed %} If this installation has recently been upgraded, check that the WSGI service (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code is running. {% endblocktrans %}
{% endblock message %}