conda / mamba installation not working due to wrapt pinning
See original GitHub issueTrying to install alibi-detect
with the following command
mamba install -c conda-forge alibi-detect
as stated on Getting Started
causes the following error message
Encountered problems while solving:
- package alibi-detect-0.8.1-pyhd8ed1ab_0 requires wrapt >=1.12.1,<1.13.0, but none of the providers can be installed
Unfortunately, wrapt
seems not to be available currently on conda-forge for alibi-detects pinning.
Is there a specific reason why the newest wrapt
version might not work?
Issue Analytics
- State:
- Created a year ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
BUG: ARM mambaforge breaks when updating mamba in x86 ...
It doesn't want to work so I'm installing miniforge now, hoping that conda remains as a fallback in case mamba breaks again. Something's...
Read more >Python Conda determining what Python version to install
When I install audioread with mamba mamba install audioread , It said Pinned packages: - python 3.7.* Encountered problems while solving: - ...
Read more >Release notes — conda 22.11.1.post14+4f2f30268 ...
Fix for conda update and conda install issues related to channel notices. ... libmamba community project - the library version of the mamba...
Read more >conda-forge - :: Anaconda.org
A software package for algebraic, geometric and combinatorial problems... 7za, 9.20, LGPL, X, A file archiver with a high compression ratio. 7zip, 19.00 ......
Read more >Setting up CPU env - Part 2 - Linux Notes - Programming 101
Make sure you do not run over alloted walltime while configuring conda env, especially when you are in the middle of installing via...
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
I have now removed
wrapt
andabsl-py
from our v0.10.0 conda recipe. However, installation on Python 3.10 is still not possible, since we requiretransformers
, andtransformers
requirestokenizers
, the recipe for which requirespython >=3.9,<3.10.0a0
.I shall leave this issue open so that we can reassess the situation in the near future.
Ah I see, those
wrapt
andabsl-py
are not requirements in thesetup.py
of the repo but they’ve been included in theconda
recipe to pass some dependency consistency checks.That being said, Python 3.10 support has not yet been released which might result in dependency errors like these. Can you try with Python 3.9?
I’ll leave a note that once we release the next version with Python 3.10 support we may need to update the
conda
recipe @ascillitoe.