Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda warning conda.common.logic:get_sat_solver_cls(278)

(base) C:\Users>conda update --all
Collecting package metadata: done
Solving environment: / WARNING conda.common.logic:get_sat_solver_cls(278): Could not run SAT solver through interface 'pycosat'.
failed

CondaDependencyError:

Cannot run solver. No functioning SAT implementations available.

Now I can't update, how should I do?

like image 270
lolo Avatar asked Feb 21 '19 09:02

lolo


1 Answers

Download and install Miniconda to a location X different from your current installation path Y. The python version Z should be the same as the broken installation. Then run the command

X\Scripts\conda.exe install -p Y python=Z conda

to heal the broken installation. Additional details are available here.

like image 169
emher Avatar answered Nov 04 '22 06:11

emher