In a Google Colab notebook, I am installing a python package which uses pynvrtc to compile some CUDA codes.
I got the error:
OSError: libnvrtc.so: cannot open shared object file: No such file or directory
I run !find / -name 'libnvrtc.*'
and get
/usr/lib/x86_64-linux-gnu/libnvrtc.so.8.0.61
/usr/lib/x86_64-linux-gnu/libnvrtc.so.8.0
My question is: Do I suppose to have libnvrtc.so
in my Google Colab system? How can I get around if I just have libnvrtc.so.8.0
?