Intel® Distribution for Python*
Engage in discussions with community peers related to Python* applications and core computational packages.

conda installation fails

Becker__Neal
Beginner
945 Views

Tried various approaches, but all give similar results:

 

[nbecker@nbecker2 ~]$ conda create -n intelpython3 intelpython3_core pandas matplotlib --channel intel --override-channels
Fetching package metadata: ..
Solving package specifications: .................................
Error: Unsatisfiable package specifications.
Generating hint: 
[      COMPLETE      ]|#########################################################################| 100%


Hint: 'intelpython3_core' has unsatisfiable dependencies (see 'conda info intelpython3_core')

0 Kudos
4 Replies
Robert_C_Intel
Employee
945 Views

Please try this and let me know if it works:

conda create -n intelpython3 python=3 intelpython3_core pandas matplotlib --channel intel --override-channels

 

0 Kudos
Becker__Neal
Beginner
945 Views

conda create -n intelpython3 python=3 intelpython3_core pandas matplotlib --channel intel --override-channels
Fetching package metadata: ..
Solving package specifications: .................................
Error: Unsatisfiable package specifications.
Generating hint: 
[      COMPLETE      ]|#########################################################################| 100%


Hint: 'python' has unsatisfiable dependencies (see 'conda info python')

0 Kudos
Becker__Neal
Beginner
945 Views

It looks like running

conda update --all

first, fixed my problem.

0 Kudos
Robert_C_Intel
Employee
945 Views

You beat me to it! Adding some notes in case others discover the same problem.

I was able to reproduce the problem you are seeing with conda 3.19.3. Updating to the latest conda (4.0.6) makes the problem go away for me. Please do:

conda info

To check the version of conda, Then:

conda update conda

To update conda and try again. We will be updating the documentation on using conda to add these requirements.

 

0 Kudos
Reply