devbio-napari
devbio-napari copied to clipboard
installation fails
Hi @haesleinhuepf , Hi team !
I'm trying to install devbio-napari using this env_devbio.yml
:
name: "devbio"
channels:
- conda-forge
- pytorch
dependencies:
- napari=0.4.19
- python=3.9
- devbio-napari=0.10.1
- pyqt
prefix: "/opt/conda/envs/devbio"
and this line conda env update -n devbio -f /tmp/env_devbio.yml
(I'm using conda but it uses the LibMambaSolver now, so it should be fine)
RUN conda env update -n devbio -f /tmp/env_devbio.yml && conda clean --all -f -y && conda env export -n "biop" && rm /tmp/env_devbio.yml:
1.496 Channels:
1.496 - conda-forge
1.496 - pytorch
1.496 - defaults
1.496 Platform: linux-64
1.496 Collecting package metadata (repodata.json): ...working... done
28.93 Solving environment: ...working... failed
144.3 Channels:
144.3 - conda-forge
144.3 - pytorch
144.3 - defaults
144.3 Platform: linux-64
144.3 Collecting package metadata (repodata.json): ...working... done
146.5 Solving environment: ...working... failed
261.4
261.4 **LibMambaUnsatisfiableError**: Encountered problems while solving:
261.4 - package napari-0.4.19-pyh9208f05_0 requires npe2 >=0.7.2, but none of the providers can be installed
261.4
261.4
261.4 Could not solve for environment specs
261.4 The following packages are incompatible
261.4 ├─ devbio-napari 0.10.1** is installable with the potential options
261.4 │ ├─ devbio-napari 0.10.1 would require
261.4 │ │ └─ npe2 <0.7.0 , which can be installed;
261.4 │ ├─ devbio-napari 0.10.1 would require
261.4 │ │ └─ __osx, which is missing on the system;
261.4 │ └─ devbio-napari 0.10.1 would require
261.4 │ └─ __win, which is missing on the system;
261.4 └─ napari 0.4.19** is not installable because it requires
261.4 └─ npe2 >=0.7.2 , which conflicts with any installable versions previously reported.
from the error message I guess it would pass on Mac and Win and fails on linux because :
261.4 │ ├─ devbio-napari 0.10.1 would require
261.4 │ │ └─ npe2 <0.7.0 , which can be installed;
and
261.4 └─ napari 0.4.19** is not installable because it requires
261.4 └─ npe2 >=0.7.2 , which conflicts with any installable versions previously reported.
I tried to :
- add the "default" to the channels (doesn't work better)
- remove the version of napari, the build works but napari doesn't start as it's complaining about qt being installed but not working (see below)
thank you in advance for your suggestions,
Best
Romain