1

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?

darthbith
  • 18,484
  • 9
  • 60
  • 76
shresth
  • 41
  • 3
  • What version of anaconda and python are you using – bendl Aug 30 '17 at 16:09
  • python 3.6.1 and anaconda 4.4.0 – shresth Aug 30 '17 at 16:13
  • Have you tried conda's suggestion and used conda info? – bendl Aug 30 '17 at 16:47
  • conda info shogun gives following result:-NoPackagesFoundError: Package missing in current linux-64 channels: - shogun – shresth Aug 30 '17 at 16:48
  • Also is [this process](http://www.shogun-toolbox.org/install#ubuntu) not enough? Am I misunderstanding the question? – bendl Aug 30 '17 at 16:54
  • It's not working. I have tried it. – shresth Aug 30 '17 at 17:19
  • What version of `conda` are you using? With 4.3.25, I get the output `UnsatisfiableError: The following specifications were found to be in conflict: - pytables -> hdf5 1.8.9 - pytables -> lzo 2.06 - shogun -> shogun-cpp 6.0.0 -> lzo 2.09` which shows the conflict is in the PyTables package, which is a dependency of blaze. Do you need to have blaze and shogun in the same environment? – darthbith Aug 31 '17 at 15:06
  • I don't think I need blaze. – shresth Sep 01 '17 at 17:14

2 Answers2

0

Though not exact match of the question asked but might help in understanding the Unsatisfiable Error meaning.

conda install python=3.6 UnsatisfiableError

0

do: conda uninstall pytables then: conda install shogun

anmol porwal
  • 213
  • 2
  • 6