它崩溃并显示以下错误
Sub Summarize()
Dim r As Long, rLast As Long, sht As Worksheet
Set sht = ActiveSheet
r = sht.Cells(Rows.Count, "B").End(xlUp).Row
rLast = r
Do
If sht.Cells(r, "C").Value = "Header" Then
sht.Cells(r, "D").Formula = "=SUM(B" & r & ":B" & rLast & ")"
rLast = r - 1
End If
r = r - 1
Loop While r > 1
End Sub
我使用上面的链接安装了最新的CUDA
我检查了环境变量,这就是我所拥有的 在系统变量下
raise ImportError(
"Could not find %r. TensorFlow requires that this DLL be "
"installed in a directory that is named in your %%PATH%% "
"environment variable. Download and install CUDA %s from "
"this URL: https://developer.nvidia.com/cuda-90-download-archive"
% (build_info.cudart_dll_name, build_info.cuda_version_number))
我确保重新启动Pycharm和PC本身
它仍然因该错误而崩溃
我该如何解决? 谢谢