Hi, I am trying to install CUDA 10.0 on my Ubuntu 20.04 that is running on WSL2.
I have installed the NVIDIA drivers for WSL2, downloaded and unpackaged the local deb file for CUDA 10.0.
Then, I tried to do a sudo apt-get install -y cuda-toolkit-10-0
however the response I got was Package cuda-toolkit-10-0 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
. I understand that I am unable to just do a sudo apt install cuda-10-0
as it might install the Linux Nvidia drivers, which will override the windows driver.
May I ask how can I solve this and install CUDA 10.0 on my WSL2 system? Or is there no solution to this and there is only CUDA 11.4 available for now? I need CUDA 10 as I am working on a repository that is using tensorflow 1.13, which is incompatible with CUDA 11.4.
Thank you!