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

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?

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

Related

Downgrading openssl is not possible in OSX

After upgraded brew in OSX it also updated the openssl older version to openssl1.1 but openssl#1.1 is not supporting the older versions for ruby of 2.3.x or older but I need to use older version is there a way so that I can downgrade my openssl or brew
I don't have older version of ssl I did the rvm install version.It installed the ruby version successfully.But when I did "bundle" I am getting the error "ssl not supported .. "
Up on this: https://github.com/rvm/rvm/issues/4006 I understood its not possible to install ruby older version less than 2.4 with openssl#1.1 by using rvm. I want to know is it possibe to downgrade openssl by using brew directly?? I have tried multiple ways it not worked??
Are you sure the version is the problem? First try:
brew info openssl
Follow the instructions to be sure. If this doesn't resolve the problem, please add more info on what error's you are getting.

Rollback of conda environment results in CondaUpgradeError

CondaUpgradeError: This environment has previously been operated on by a conda version that's newer
than the conda currently being used. A newer version of conda is required.
target environment location: C:\Users\XXXXXXXXXX\AppData\Local\Continuum\anaconda3
current conda version: 4.5.11
minimum conda version: 4.6
Ok, let's try something stupid...
C:\Users\XXXXXXXX>pip install conda==4.6
Collecting conda==4.6
Could not find a version that satisfies the requirement conda==4.6 (from versions: 3.0.6, 3.5.0, 3.7.0, 3.17.0, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.5, 4.0.7, 4.0.8, 4.0.9, 4.1.2, 4.1.6, 4.2.6, 4.2.7, 4.3.13, 4.3.16)
No matching distribution found for conda==4.6
How do I get out of this trap? I've tried to upgrade it with various conda install and conda update commands but nothing works. This apparently happened upgrading from 4.6 to 4.6.2
Its a bug. recommendations are posted here on the conda issue board
basically, reinstall from cache or downgrade, then upgrade conda

hoot upgrade to the pre-release package of mxnet

I want to upgrade to the pre-release package of mxnet pre. Can i do this through pip?
I tried pip with --pre --upgrade. This installed the latest official release. Is there a way where I can upgrade to the pre-release version. i am using mac os
we did not publish the release candidate. You will have to build that from source yourself.
You can try pip install mxnet -U --pre

Protocol Buffer: Version Change

I have accidentally installed version 3.0.0 and most of my files naturally gave tons of errors. Now I want to take it back to 2.6.1. I already downloaded 2.6.1 and installed, however when I do protoc --version it still shows libprotoc 3.0.0, which is wrong.
Is there a way to set the version to 2.6.1 or is there a way to uninstall 3.0.0?
Figured it out. One should delete everything regarding google protocol buffers under /local and /include, , and then simple reinstall the other version. After that protoc --version shows the new version.
If you use pip:
pip uninstall protobuf
pip install protobuf==2.6.1

How do I Install version 2.5.1 of RabbitMQ using Homebrew?

I'm in a situation where I absolutely must use the specific version 2.5.1 of RabbitMQ (or any version 2.5.x should do really) and I can't find how to install it via Homebrew anywhere, can anyone provide good instructions as to how to get it?
First, check whether version you need exists in homebrew
$ brew versions rabbitmq
Mine shows (... - skipped for readability):
...
2.5.1 git checkout 3630e1b Library/Formula/rabbitmq.rb
...
Then just checkout version you want (in your case 2.5.1):
git checkout 3630e1b Library/Formula/rabbitmq.rb
And finally install rabbitmq formula:
brew install rabbitmq

Resources