I have a miniconda environment that I am installing packages in. I want to install a package and I understand that there can be some conflicts, however to resolve those conflicts either requires a missing package install or downgrade/upgrade of another and it has become a long rabbit hole of trying to downgrade, upgrade and install packages. Is there a way to force conda to do this all automatically as it currently does not. Example install is:
conda install psycopg2=2.7.5=py35h74b6da3_2
which is the package, the version and the python I'm using, however I get a Error that never seems to end.
UnsatisfiableError: The follow specifications were found to be in conflict:
-defaults/win-64::qt==5.9.7 ->openssl[version='1.1.*,>1=1.1.1a,<1.1.2a']
-openssl=1.0.2r
And then tells me to look at its dependencies and then it list more packages that need install and I'm not sure when it ends...
Any help would be great.