我想用來mamba install安裝啟用了 CUDA 的最新 TensorFlow 發行版(至少 2.10 或 2.9.1)。
我嘗試了以下方法:
mamba install -c anaconda tensorflow==2.9.1=gpu_py310*
mamba install -c anaconda tensorflow=2.9.1=gpu_py310*
mamba install -c anaconda tensorflow=2.9.1=gpu_py310
mamba install tensorflow-gpu
輸出一般是:
anaconda/win-64 Using cache
anaconda/noarch Using cache
conda-forge/win-64 Using cache
conda-forge/noarch Using cache
Encountered problems while solving:
- nothing provides requested tensorflow
和if 也在輸入命令上2.9.1。gpu_py310*重要的是要澄清我不想使用 pip,我希望 mamba 對我很好地管理包。對這個問題有什么建議或答案嗎?
uj5u.com熱心網友回復:
我想通了,只需要使用-c main而不是-c anaconda. 命令如下:
mamba install -c main tensorflow==2.9.1=gpu_py310*
它安裝所需的版本。
轉載請註明出處,本文鏈接:https://www.uj5u.com/net/526970.html
上一篇:張量流中的前向插補
