import_error.html 953 B

12345678910111213141516171819
  1. {% extends '500.html' %}
  2. {% block message %}
  3. <p>
  4. A module import error occurred during this request. Common causes include the following:
  5. </p>
  6. <p>
  7. <i class="mdi mdi-alert"></i> <strong>Missing required packages</strong> - This installation of NetBox might be
  8. missing one or more required Python packages. These packages are listed in <code>requirements.txt</code> and
  9. <code>local_requirements.txt</code>, and are normally installed as part of the installation or upgrade process. To
  10. verify installed packages, run <code>pip freeze</code> from the console and compare the output to the list of
  11. required packages.
  12. </p>
  13. <p>
  14. <i class="mdi mdi-alert"></i> <strong>WSGI service not restarted after upgrade</strong> - If this installation has
  15. recently been upgraded, check that the WSGI service (e.g. gunicorn or uWSGI) has been restarted. This ensures that
  16. the new code is running.
  17. </p>
  18. {% endblock message %}