1

Well a similar question has been asked already: resolving package resolutions in conda

Solving environment: /
Warning: 2 possible package resolutions (only showing differing packages):
  - defaults/noarch::path.py-12.0.2-py_0, defaults/osx-64::path-13.2.0-py37_0
  - defaults/noarch::path.py-12.4.0-0, defaults/osx-64::path-13.1.0-py37done

Already tried the following:

conda update --strict-channel-priority --all
conda update --all
conda update anaconda
conda update conda

Nothing seems to resolve this! Will really appreciate any help.

Conda info ==> http://dpaste.com/2951Y1J

conda version: 4.8.3

conda build version: 3.18.11

OS: Mac OS 10.14 Mojave

TIA

Codistan
  • 1,143
  • 1
  • 10
  • 14

3 Answers3

7

Hi recently I had the same problem, I'm just a newbie, but I found a way to solve it.

For example:

Warning: 2 possible package resolutions (only showing differing packages):

  • defaults/noarch::sphinx-3.5.3-pyhd3eb1b0_0, defaults/win-64::docutils-0.17-py38haa95532_1
  • defaults/noarch::sphinx-3.5.4-pyhd3eb1b0_0, defaults/win-64::docutils-0.16-py38done

The solution is: conda update sphinx, and then conda update docutils just in case, use conda update (name). depending on the name

Jorgespw
  • 71
  • 1
  • 3
3

Alright, found the solution

conda install anaconda-clean
anaconda-clean --yes
conda update --all

Should resolve the issue.

Codistan
  • 1,143
  • 1
  • 10
  • 14
0

Just encountered this. What worked for me was:

conda update conda 
conda update anaconda
conda update conda
conda update anaconda

Note that in my case this needed to be run in this specific order (with repeats).