Finally got Netbox up and running, but whenever I try to open any of the device tabs (Status, LLDP Neighbors, Configuration) I receive the following pop-up error:
{"detail":"NAPALM is not installed. Please see the documentation for instructions."}
This does work correctly in the development instance when I run
python3 manage.py runserver 0.0.0.0:8000 --insecure, so I'm not sure what I'm missing between the two.
Brand new install:
Ubuntu 18.04.2 LTS
NetBox 2.5.12
netbox@netbox:~$ pip3 freeze | grep napalm
napalm==2.4.0
napalm-base==1.0.0
napalm-ios==0.8.1
napalm-junos==0.12.1
napalm-panos==0.5.2
netbox@netbox:/opt/netbox/netbox$ python3 ./manage.py nbshell
### NetBox interactive shell (netbox)
### Python 3.6.7 | Django 2.2.1 | NetBox 2.5.12
### lsmodels() will show available models. Use help(<model>) for more info.
>>> import napalm
>>>
netbox@netbox:~$ pip3 show gunicorn
Name: gunicorn
Version: 19.9.0
Summary: WSGI HTTP Server for UNIX
Home-page:
http://gunicorn.orgAuthor: Benoit Chesneau
Author-email:
ben...@e-engura.comLicense: MIT
Location: /home/netbox/.local/lib/python3.6/site-packages
Requires:
Let me know what additional information may be needed, any help is greatly appreciated!!