xinntao / EDVR

Winning Solution in NTIRE19 Challenges on Video Restoration and Enhancement (CVPR19 Workshops) - Video Restoration with Enhanced Deformable Convolutional Networks. EDVR has been merged into BasicSR and this repo is a mirror of BasicSR.
https://github.com/xinntao/BasicSR
1.48k stars 320 forks source link

Does the command “python setup.py develop” must need cuda 9.0 to run, can not be 10.0? #131

Open Raymondmax opened 4 years ago

Raymondmax commented 4 years ago

I run “python setup.py develop” with cuda 10.0, but an error raise, prompting me that "error: command 'C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v9.0\bin\nvcc' failed: No such file or directory". However, my GPU is RTX2018ti,I must install CUDA10.0.

MarvinChung commented 4 years ago

It works fine for me after running "python setup.py develop". My GPU is RTX2080ti and working on ubuntu. image I guess you may encounter this kind of problem. https://stackoverflow.com/questions/53422407/different-cuda-versions-shown-by-nvcc-and-nvidia-smi However these steps are working for linux, you may have to find a way to work on windows.

H-Wenfeng commented 4 years ago

I use pytorch==1.1 and cudatoolkit 10.1 , it works fine.

Raymondmax commented 4 years ago

It works fine for me after running "python setup.py develop". My GPU is RTX2080ti and working on ubuntu. image I guess you may encounter this kind of problem. https://stackoverflow.com/questions/53422407/different-cuda-versions-shown-by-nvcc-and-nvidia-smi However these steps are working for linux, you may have to find a way to work on windows.

I changed the system to linux, and the problem disappeared.