libcublas.so.8.0 error with tensorflow

后端 未结 6 1090
轮回少年
轮回少年 2020-12-15 05:38

I am currently trying to run a project from GitHub: https://github.com/nilboy/pixel-recursive-super-resolution

After installing ubuntu on VM, I installed python with

6条回答
  •  余生分开走
    2020-12-15 06:31

    You need to install Cuda 8.0 and configure the environment as below:

    export PATH="$PATH:/usr/local/cuda-8.0/bin"
    export LD_LIBRARY_PATH="/usr/local/cuda-8.0/lib64"
    

提交回复
热议问题