Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> import paddle.fluid as fluid
>>> fluid.install_check.run_check()
Running Verify Fluid Program ...
Traceback (most recent call last):
File "", line 1, in
fluid.install_check.run_check()
File "D:\python37\lib\site-packages\paddle\fluid\install_check.py", line 123, in run_check
test_simple_exe()
File "D:\python37\lib\site-packages\paddle\fluid\install_check.py", line 119, in test_simple_exe
exe0.run(startup_prog)
File "D:\python37\lib\site-packages\paddle\fluid\executor.py", line 651, in run
use_program_cache=use_program_cache)
File "D:\python37\lib\site-packages\paddle\fluid\executor.py", line 749, in _run
exe.run(program.desc, scope, 0, True, True, fetch_var_name)
RuntimeError: cublas64_90.dll not found.
>>>
这是什么情况啊 大佬们
学到了
官网文档有写要装这些,但没写详细,
你没有装CUDA、CUDNN,参照如下(注意只能装CUDA10.0,CUDNN7+):
https://blog.csdn.net/m0_37605642/article/details/98854753?depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3&utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3
同样的问题,已解决。
在C:\Users\Administrator\Anaconda3\envs\paddle\Library\bin目录下可以找到缺失的cublas64_100.dll文件
将其复制到C:\Windows\System32目录下即可
重新输入paddle.fluid.install_check.run_check()显示Your Paddle is installed successfully! Let's start deep Learning with Paddle now,安装成功
Python 3.7.5 (tags/v3.7.5:5c02a39a0b, Oct 15 2019, 00:11:34) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import paddle.fluid
>>> paddle.fluid.install_check.run_check()
Running Verify Fluid Program ...
W0131 16:28:38.602265 9596 operator.cc:179] fill_constant raises an exception class std::runtime_error, cublas64_100.dll not found.
C:\Python\Python37\lib\site-packages\paddle\fluid\executor.py:779: UserWarning: The following exception is not an EOF exception.
"The following exception is not an EOF exception.")
Traceback (most recent call last):
File "", line 1, in
File "C:\Python\Python37\lib\site-packages\paddle\fluid\install_check.py", line 123, in run_check
test_simple_exe()
File "C:\Python\Python37\lib\site-packages\paddle\fluid\install_check.py", line 119, in test_simple_exe
exe0.run(startup_prog)
File "C:\Python\Python37\lib\site-packages\paddle\fluid\executor.py", line 780, in run
six.reraise(*sys.exc_info())
File "C:\Python\Python37\lib\site-packages\six.py", line 703, in reraise
raise value
File "C:\Python\Python37\lib\site-packages\paddle\fluid\executor.py", line 775, in run
use_program_cache=use_program_cache)
File "C:\Python\Python37\lib\site-packages\paddle\fluid\executor.py", line 822, in _run_impl
use_program_cache=use_program_cache)
File "C:\Python\Python37\lib\site-packages\paddle\fluid\executor.py", line 899, in _run_program
fetch_var_name)
RuntimeError: cublas64_100.dll not found.
对啊 按官方来的
https://ai.baidu.com/forum/topic/show/943038
看看有么有帮助
是按官网文档来的吗?