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
Related
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?
I'm using python 3.6 on windows 10. I want to install boruta in my python.
So I used following command conda install -c conda-forge r-boruta but got error message
PackagesNotFoundError: The following packages are not available from current channels:
I also tried conda install boruta but got the same error message. Can you suggest me installation steps
As per official documentation of anaconda https://anaconda.org/saravji/boruta if you want to install boruta using conda install use conda install -c saravji boruta or conda install -c conda-forge boruta_py and make sure that your python version is less than equal to 3.6.
Try this:
conda config --add channels conda-forge
conda install r-boruta
Source: https://github.com/conda-forge/r-boruta-feedstock
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 trying to install easydict package from conda prompt using following command
conda install easydict
But I am getting the following error
PackageNotFoundError: Packages missing in current channels:
easydict
We have searched for the packages in the following channels:
...
I am using Anaconda Navigator 1.6.4
easydict is a module which is currently not offered through the default standard conda channel. Instead, you can use e.g. the conda-forge channel:
conda install easydict -c conda-forge
The auto channel recommended in the post above has the disadvantage that it will potentially affect many other packages, most importantly downgrading python3 to python2.7
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