在ubuntu的gpu上安装tensorflow

时间:2018-07-26 19:56:17

标签: python tensorflow keras gpu

pip3 install tensorflow-gpu --user

无论何时运行以上命令,我通常都会收到此消息;

def string_to_file(string):
    file_object = open('temporary_file.temporary', 'w')
    file_object.write(string)
    file_object.flush()
    return file_object

当我转到python3并将tensorflow导入为tf时; 我收到以下错误:

ImportError:libcublas.so.9.0:无法打开共享对象文件:没有这样的文件或目录

1 个答案:

答案 0 :(得分:1)

我遇到了确切的问题。我卸载了tensorflow并按照下面的链接中提到的步骤进行了工作: http://www.python36.com/how-to-install-tensorflow-gpu-with-cuda-9-2-for-python-on-ubuntu/