Issue
It is my first time to use netmiko module on Centos.
I kept get below message when I was using Python(2.7.5).
If I used Python(3.6.8), it will be this:
I have verified that I did install netmiko.
Solution
It probably might be an issue due to different python versions in your system. Perhaps you can install it by calling pip
module of the particular python version.
So, for python 3.x you can execute the following:
python3 -m pip install netmiko
Similarly, for python 2.x you can execute:
python -m pip install netmiko
Answered By - Melvin Abraham Answer Checked By - Willingham (WPSolving Volunteer)