文章链接:https://blog.csdn.net/chekongfu/article/details/85177424
bash环境可以使用tensorflow,但eclipse不能使用.显示:libcublas.so.10.0:cannot open shared object file:No such file
一般是路径问题,Eclipse和pycharm没能添加cuda;路径,而系统默认添加了路径;
可能是ubuntu中配置的环境变量不能像Windows中配置的环境变量一样被eclipse访问,然后通过如下方式解决:
1.打开Windows->Preferences->PyDev->Interpreters->Python Interpreter
2.选择第二栏选项卡中的Environment,选择new
3.通过new,新建3个Variable,
CUDA_HOME=/usr/local/cuda
LD_LIBRARY_PATH=/usr/local/cuda/lib64
PATH=/usr/local/cuda/bin
不必在意第一行的显示是否是tensorflow.
apply之后运行成功.