atmtools / arts

The Atmospheric Radiative Transfer Simulator
https://www.radiativetransfer.org/
Other
62 stars 28 forks source link

pyarts 2.6.2 Installation error even though glibc requirement is satisfied #756

Closed DonteRW closed 4 months ago

DonteRW commented 4 months ago

Describe the bug

I am trying to install the latest version of pyarts using conda and I am failing to install it.

I am getting the following error:

UnsatisfiableError: The following specifications were found to be incompatible with your system:

Your installed version is: 2.35

To Reproduce Steps to reproduce the behaviour:

  1. conda create --name ARTS26
  2. conda activate ARTS26
  3. conda install rttools::pyarts

Expected behavior I expected pyarts to install without issues as the glibc on my system (v2.35) satisfies the requirement that __glibc[version='>=2.17']

System info (please complete the following information):

olemke commented 4 months ago

This is strange, especially because our conda packages were build on Ubuntu 22.04.4. Are you using Miniforge3 as your conda distribution? pyarts is based on the conda-forge repository. If you're using Anaconda, what happens if you add the conda-forge repository to your install command: conda install -c conda-forge rttools::pyarts?

DonteRW commented 4 months ago

@olemke Thanks

I am not using Miniforge3, I installed anaconda and created an environment.

conda install -c conda-forge rttools::pyarts works!!

olemke commented 4 months ago

Great! We will update our documentation to be more clear about Miniforge3.