-
Hi everybody, I set up NAPALM according to the documentation of Netbox and installed the python modules necessary. This is the error message: {"error": "cannot import name 'system'", "exception": "ImportError", "netbox_version": "2.11.7", "python_version": "3.6.8"} Can anbody provide some insight? Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Since the string
I notice that if I put
But clearly the vendor should be something else like "aoscx". Note: the correct way to install the napalm modules of interest inside the Netbox venv is to add them to
|
Beta Was this translation helpful? Give feedback.
Since the string
import.*system
doesn't occur anywhere in the Netbox Python source, I think it's something to do with napalm or the napalm Aruba driver. I suggest you try running napalm standalone, and get that working first:I notice that if I put
--vendor system
then I get a similar error to yours:But clearly the vendor should be something else like "aoscx".
Note: the correct way to install the napalm modules of interest inside the Netbox venv is t…