- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 conda 安装 cuml
conda install -c rapidsai cuml=21.12
这是我得到的痕迹:
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: /
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 each other:
Output in format: Requested package -> Available versionsThe following specifications were found to be incompatible with your system:
- feature:/linux-64::__glibc==2.31=0
- cuml=21.12 -> cupy[version='>=7.8.0,<10.0.0a0'] -> __glibc[version='>=2.17|>=2.17,<3.0.a0']
- python=3.8 -> libgcc-ng[version='>=7.5.0'] -> __glibc[version='>=2.17']
Your installed version is: 2.31
我的困惑是它说我需要一个大于 2.17 的 __glibc 版本,但我安装的是 2.31 版本。
最佳答案
忽略 Conda's poor conflict reporting ,RAPIDS 具有非常具体的 channel 规范(rapidsai > nvidia > conda-forge
),因此这可能会影响求解。包含这些 channel 可能就足够了:
conda install -c rapidsai -c nvidia -c conda-forge cuml=21.12
但是,也可能是之前安装的某些东西阻止了正确安装。此外,当包需要专门的 channel 时,创建专用环境通常是更好的做法:
conda create -n cuml -c rapidsai -c nvidia -c conda-forge cuml=21.12
后者类似于the RAPIDS installation selector产生。
关于python - 安装 cuml 时出现 UnsatisfiableError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70585934/
我正在尝试创建自己的 anaconda 包,经过多次尝试,我终于设法创建了一个可用的 conda package出我的 code . (它取决于来自 haasad channel 的包,所以它应该像这
我正在尝试使用以下命令在 Mac 终端上安装 pairtools ( https://github.com/mirnylab/pairtools) 包: conda install -c conda-
对于我的College项目,我尝试使用conda install pyqt=4命令安装pyqt,但是它显示如下所示的错误(即使在解决环境几分钟后,也会出现此错误)。 我是这些东西的新手,有人可以帮我解
我正在尝试在 Windows 上使用 Anaconda2 安装 Orange 2.7,但运气不太好。 我尝试在命令提示符中使用:conda install -c anaconda Orange。 这不
我正在使用 conda 安装 cuml conda install -c rapidsai cuml=21.12 这是我得到的痕迹: Collecting package metadata (curr
conda install -c anaconda -c conda-forge -c nvidia cudatoolkit=11 tensorflow-gpu=2 我想安装 cudatoolkit
尝试在 Docker 中的 conda 中安装 pytorch,并得到 UnsatisfiableError。但是,我在错误消息中找不到任何实际冲突,或者我可能无法正确理解它。使用的 Docker 镜
我安装了 Python 3.6 anaconda,并希望通过 conda install basemap 包进行安装。但是,我收到以下错误: UnsatisfiableError: The follo
我正在尝试按照 this tutorial 在 Python 3.7 和 2.7 的 Anaconda2 提示符上安装 deeptools . 首先,我遇到了一个环境错误,我通过运行以下命令解决了该错
我正在尝试打包我的 python 代码以在 Anaconda 云上发布。 文件夹结构如下所示: . ├── conda-recipe │ ├── build.bat │ ├── build.s
尝试使用 conda 安装tensorflow,但抛出了规范冲突错误。我没有安装 python 3.5 conda install -c conda-forge tensorflow Fetching
我的所有 miniconda 环境都出现错误。刚才重新做了一个环境,还是报同样的错误: conda create --name py36 python=3.6 spyder jupyter ^ 工作正
尝试使用命令 conda update conda 从终端更新 conda 时出现错误.它在说: Solving environment: failed UnsatisfiableError: The
嗨,我正在尝试在 Anaconda 中安装 PulP,显然我用 google 搜索了它,所以我知道你应该写: conda install -c primer pulp 在 Anaconda 中写下这个
我目前通过 Anaconda Continuum 安装了 Python 3.5.2。我正在尝试升级到 Python 3.6,但是当我尝试运行 conda install python=3.6 时出现以
如讲座“使用 opencv 和深度学习进行计算机视觉的 python”(udemy 类(class))中所示,我正在使用类(class)提供的 yml 文件创建一个环境。我收到以下错误 unsatis
我目前通过 Anaconda Continuum 安装了 Python 3.5.2。我正在尝试升级到 Python 3.6,但当我尝试运行 conda install python=3.6 时收到以下
我目前通过 Anaconda Continuum 安装了 Python 3.5.2。我正在尝试升级到 Python 3.6,但是当我尝试运行 conda install python=3.6 时出现以
如何在OS X中为Anaconda Python安装OpenCV?我在Windows 7企业版中使用了相同的命令,并且有效 Monas-MacBook-Pro:machine_learning mon
我已经尝试通过 Anaconda Navigator 和 Anaconda Prompt 在 Windows 上安装 OpenCV,但我得到了同样的错误: UnsatisfiableError: Th
我是一名优秀的程序员,十分优秀!