Installation fails with UnsatisfiableError
See original GitHub issueInstallation of bayeslite fails with the following error:
(py2) user@kubuntu:~$ python
Python 2.7.17 |Anaconda, Inc.| (default, Oct 21 2019, 19:04:46)
[GCC 7.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
(py2) user@kubuntu:~$ conda install -c probcomp bayeslite
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: -
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError: The following specifications were found to be incompatible with each other:
Output in format: Requested package -> Available versionsThe following specifications were found to be incompatible with your CUDA driver:
- feature:/linux-64::__cuda==10.2=0
- feature:|@/linux-64::__cuda==10.2=0
Your installed CUDA driver is: 10.2
(py2) user@kubuntu:~$
I have CUDA 10.2.89
installed
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (1 by maintainers)
Top Results From Across the Web
How do I resolve the error "UnsatisfiableError" when using ...
When using the Anaconda installation process conda install gurobi to install Gurobi, you may receive an error such as: UnsatisfiableError: ...
Read more >conda install python=3.6 UnsatisfiableError - Stack Overflow
2 installed via Anaconda Continuum. I'm trying to upgrade to Python 3.6 but I'm getting the below error when I try to run...
Read more >"UnsatisfiableError" during installation · Issue #22 - GitHub
Hello! I encountered several errors while installing. Please, help to solve it. Steps to reproduce: With manual installation: Install Anaconda 3 ...
Read more >Using older notebook on latest Anaconda Navigator ...
I installed anaconda navigator from the executable downloaded file from their website. But when i run conda install tensorflow it fails with a ......
Read more >How to fix UnsatisfiableError when installing mamba?
After running conda install -yq mamba I get the following error: Collecting package metadata (current_repodata.json): ...working... …
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@fsaad thanks for pointing me to those docs. Encountered failure at the second step. Looks like I need to enable some different channels (e.g. we need
seaborn=0.7
and current channels don’t list anything earlier than0.8
)@fsaad made some more progress. So it seems the problematic packages (i.e., the packages that
conda
has a difficult time with) arebayeslite
andloom
. The others I was able to install viaconda
in a very straightforward manner (after including the extra channels you pointed to).After that, I was able to install
bayeslite
by building from source viasetup.py
. I suspect a similar process might work forloom
as well.I am new to conda, but it seems the dependency tracking for
bayeslite
conda package is messed up. Hope this helps.