Hi,
OS: Linux (Ubuntu 20.04.2)
I was trying to install VMTK via conda in an already created environment (Python 3.7.10) and I get the following error:
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 the existing python installation in your environment:
Specifications:
- vmtk -> python[version='>=2.7,<2.7.15.0a0|>=3.5,<3.5.2.0a0|>=3.6,<3.6.2.0a0']
- vtk -> python[version='>=3.8,<3.9.0a0|>=3.9,<3.10.0a0']
Your python: python=3.7
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
The following specifications were found to be incompatible with each other:
Output in format: Requested package -> Available versions
Package _openmp_mutex conflicts for:
itk -> libgcc-ng[version='>=7.2.0'] -> _openmp_mutex[version='>=4.5']
python=3.7 -> libgcc-ng[version='>=7.5.0'] -> _openmp_mutex[version='>=4.5']
vtk -> libgcc-ng[version='>=7.2.0'] -> _openmp_mutex[version='>=4.5']
vmtk -> libgcc-ng[version='>=7.2.0'] -> _openmp_mutex[version='>=4.5']
Package ca-certificates conflicts for:
vtk -> python[version='>=2.7,<2.8.0a0'] -> ca-certificates
python=3.7 -> openssl[version='>=1.1.1k,<1.1.2a'] -> ca-certificatesThe following specifications were found to be incompatible with your system:
- feature:/linux-64::__glibc==2.31=0
- itk -> libgcc-ng[version='>=7.2.0'] -> __glibc[version='>=2.17']
- python=3.7 -> libgcc-ng[version='>=7.5.0'] -> __glibc[version='>=2.17']
- vmtk -> libgcc-ng[version='>=7.2.0'] -> __glibc[version='>=2.17']
- vtk -> libgcc-ng[version='>=7.2.0'] -> __glibc[version='>=2.17']
Your installed version is: 2.31
I tried creating a new environment with Python 3.6, tried specifying the vtk (8.1.0), itk (4.13.0) and vmtk (1.4.0) versions that work on my other system (MacOS Big Sur 11.3, Python 3.7.4) and I can’t finish the install. It looks like it has something to do with glibc
(not sure what this is), but even if the incompatibilities of specific packages vary a little bit when I try to install vmtk in these different circumstances, the last lines at the end are always very similar:
- feature:/linux-64::__glibc==2.31=0
- itk -> libgcc-ng[version='>=7.2.0'] -> __glibc[version='>=2.17']
- python=3.7 -> libgcc-ng[version='>=7.5.0'] -> __glibc[version='>=2.17']
- vmtk -> libgcc-ng[version='>=7.2.0'] -> __glibc[version='>=2.17']
- vtk -> libgcc-ng[version='>=7.2.0'] -> __glibc[version='>=2.17']
Your installed version is: 2.31
I have found several posts (not from vmtk) complaining about this, but haven’t found a solution yet. I am gonna continue looking out there, but if anybody has faced this issue and has been able to solve it, it would be great if you could explain how you did it! Thank you,