Windows 在 Conda 中安装 wand 包

Install wand package in Conda on Windows

作为 Conda 新手,我正在寻求安装 wand 方面的帮助。我在这台机器上成功地在 Conda 之外安装和使用了 wand。我在 运行ning ImageMagick-7.0.10-Q16-HDRI 系统范围内。当我 运行:

conda install -c conda-forge wand

conda install -c conda-forge/label/cf202003 wand

按照 conda forge 的建议,这是结果:

conda install -c conda-forge/label/cf202003 wand
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 CUDA driver:

  - feature:/win-64::__cuda==10.2=0

Your installed CUDA driver is: 10.2

原来是conda报错信息误导了。 conda-forge 处的魔杖包有误。相反,我通过 pip 安装了魔杖:

conda install pip
pip install Wand