进口安存在的问题

2024-09-30 12:15:26 发布

您现在位置:Python中文网/ 问答频道 /正文

我在windows上运行python,但是当我导入athano时,我遇到了一个问题:

import theano

WARNING (theano.configdefaults): g++ not detected ! Theano will be unable to execute optimized C-implementations (for both CPU and GPU) and will default to Python implementations. Performance will be severely degraded. To remove this warning, set Theano flags cxx to an empty string.


Tags: andtoimportwindowsnottheanobewill
1条回答
网友
1楼 · 发布于 2024-09-30 12:15:26

这不是一个问题,而是一个警告,因为它非常清楚地说明了这一点。这只意味着您的系统上没有安装g++并且theano将无法应用优化。在

要删除此项,只需安装g++或按照其明确说明的操作:

To remove this warning, set Theano flags cxx to an empty string.

相关问题 更多 >

    热门问题