I've been having trouble installing some packages with conda (on python 3.7 on Windows in a conda env). For example if I try install the shap package:
conda install -c conda-forge shap
I get
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- conda-forge/win-64::wincertstore==0.2=py37_1002
- shap
Use "conda info <package>" to see the dependencies for each package.
It installs fine with pip. But how could I resolve the error to use conda instead?
Related
i want to add kivy in my anaconda python.
i use anaconda3 last version with python3.6 on Centos 7 64bits
i try to use last version in anaconda cloud :
./conda install --force --no-deps -c wgarcia kivy
or
./conda install --force --no-deps -c wgarcia kivy=1.9.1
i try with other version in other repo (1.9.0,1.8...) but i have same error
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- kivy=1.9.1
- sphinx
Use "conda info <package>" to see the dependencies for each package.
please, how to install Kivy (1.10 ?) in my anaconda ?
I am getting dependency conflicts for keras and keras-gpu when installing via conda shell on Windows.
Earlier the conflicts were between nltk and keras and I uninstalled nltk package. But even now the following conflict exists:
(base) C:\WINDOWS\system32> conda install keras
Solving environment: failed
UnsatisfiableError: The following specifications were found to be in conflict:
- backports.functools_lru_cache
- keras
Use "conda info <package>" to see the dependencies for each package.
How do I resolve this error and successfully install keras and keras-gpu?
I am getting the following error when I tried to install pyglet:
$ conda install -c conda-forge pyglet
Fetching package metadata .............
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- pyglet -> python 3.5* -> xz 5.0.5
- python 3.6*
Use "conda info <package>" to see the dependencies for each package.
I had to downgrade my pyglet version from 1.3 using "pip install"
pip install pyglet==1.2.4
I tried to install opencv3 with conda on my mac. Somehow opencv seems to be installed for python2.7. Actually I removed that with
brew uninstall opencv
heres the error for
conda install -c menpo opencv3
Fetching package metadata .............
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- opencv3 -> python 2.7*
- python 3.6*
Use "conda info <package>" to see the dependencies for each package.
Since I only needed the python version of opencv
pip install opencv-python
worked fine. Thanks to #Max
I have installed anaconda3 on my ubuntu 16.04. I am now trying to install shogun toolbox. I am typing the following command:-
conda install -c conda-forge shogun
And I am getting the following error:-
UnsatisfiableError: The following specifications were found to be in conflict:
- blaze
- python 3.6*
- shogun
Use "conda info <package>" to see the dependencies for each package.
Can anyone help?
Though not exact match of the question asked but might help in understanding the Unsatisfiable Error meaning.
conda install python=3.6 UnsatisfiableError
do:
conda uninstall pytables
then:
conda install shogun