Я пытаюсь установить CUDA 9.0 с NVIDIA-SMI: 445,75 в Windows 10.
Моя Cuda 9.0 установка успешно, как показано в Command-prompt
*(DL) C:\Users\User>nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Sep__1_21:08:32_Central_Daylight_Time_2017
**Cuda compilation tools, release **9.0**, V9.0.176***
(1) Я скачал cudnn-9.0-windows10-x64-v7.zip
, извлек его и переместил в складку, которая была создана при установке Cuda.
(2) В приглашении terminal
ввода Anaconda ,
I conda install pytorch=1.1.0 torchvision=0.3.0 cudatoolkit=9.0 –c pytorch
.
Однако приглашение Anaconda выдает следующую ошибку
**Error messages**
*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 the existing python installation in your environment:
Specifications:
- pytorch=1.1.0 -> python[version='>=3.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0']
- torchvision=0.3.0 -> python[version='>=3.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0']
Your python: python=3.8
Если python находится в самой левой части цепочки, это версия, которую вы запросили.
Когда справа появляется python, это указывает на то, что вещь слева как-то недоступна для версии python, к которой вы привязаны. Обратите внимание, что conda не изменит вашу версию python на другую вспомогательную версию, если вы явно не укажете это.
Следующие спецификации были признаны несовместимыми друг с другом:
Output in format: Requested package -> Available versions
Package cudatoolkit conflicts for:
torchvision=0.3.0 -> cudatoolkit[version='>=10.0,<10.1|>=9.0,<9.1']
pytorch=1.1.0 -> cudatoolkit[version='>=10.0,<10.1|>=9.0,<9.1']
torchvision=0.3.0 -> pytorch[version='>=1.1.0'] -> cudatoolkit[version='>=10.1,<10.2|>=9.2,<9.3']The following specifications were found to be incompatible with your CUDA driver:
- feature:/win-64::__cuda==11.0=0
Your installed CUDA driver is: 11.0*