Search code examples
netmiko

Is is possible to downgrade the Netmiko version from 3.0.0 to 2.4.2


I ran into some issues after upgrading to Netmiko's latest version 3.

Is it possible to downgrade the Netmiko version from 3.0.0 to 2.4.2?


Solution

  • I was able to achieve this by doing below - 1) pip3 unsintall netmiko 2) pip3 install netmiko==2.4.2 Thanks