python – Google Colab上的pynvrtc:未找到libnvrtc.so
作者:互联网
在Google Colab笔记本中,我正在安装一个python包,它使用pynvrtc编译一些CUDA代码.
我收到了错误:
OSError: libnvrtc.so: cannot open shared object file: No such file or directory
我跑了!找到/ -name’libnvrtc.*’然后得到
/usr/lib/x86_64-linux-gnu/libnvrtc.so.8.0.61
/usr/lib/x86_64-linux-gnu/libnvrtc.so.8.0
我的问题是:我想在我的Google Colab系统中使用libnvrtc.so吗?如果我有libnvrtc.so.8.0,我该如何解决?
解决方法:
以下是我为pynvrtc工作所做的工作.为libnvrtc.so创建符号链接.
!apt -y install libnvrtc8.0
!ln -snf /usr/lib/x86_64-linux-gnu/libnvrtc.so.8.0 /usr/lib/x86_64-linux-gnu/libnvrtc.so
受到Is it possible to install cupy on google colab?的激励
标签:python,cuda,google-colaboratory 来源: https://codeday.me/bug/20190710/1427572.html