conda install -c anaconda -c conda-forge -c nvidia cudatoolkit=11 tensorflow-gpu=2
I want to install cudatoolkit=11 and tensorflow-gpu=2, but conda gave me the following error message
UnsatisfiableError: The following specifications were found to be incompatible with your system:
- feature:/linux-64::__glibc==2.31=0
- cudatoolkit=11 -> __glibc[version='>=2.17,<3.0.a0']
Your installed version is: 2.31
If I run
conda install -c anaconda -c conda-forge -c nvidia cudatoolkit=11
conda can successfully install cudatoolkit=11.
Since glibc is a system feature, why installing cudatoolkit by itself is ok?
Why isn't glic 2.31 in range >=2.17,<3.0.a0?