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.
2
I have tried python 3.x command which works well.
python3 -m pip install netmiko
The python 2.x command did not work. It seems like latest netmiko did not support python version under 3.x anymore.
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.
pip
So, for python 3.x you can execute the following:
Similarly, for python 2.x you can execute:
python -m pip install netmiko
Click here to cancel reply.
2
Answers
I have tried python 3.x command which works well.
The python 2.x command did not work. It seems like latest netmiko did not support python version under 3.x anymore.
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:
Similarly, for python 2.x you can execute: