import_error.html 993 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="fa fa-warning"></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.
  10. To 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="fa fa-warning"></i> <strong>WSGI service not restarted after upgrade</strong> - If this installation
  15. has recently been upgraded, check that the WSGI service (e.g. gunicorn or uWSGI) has been restarted. This
  16. ensures that the new code is running.
  17. </p>
  18. {% endblock %}