使用' theano-nose'时出错命令

时间:2015-02-13 21:18:58

标签: theano

在Windows上从Enthought Canopy安装Theano之后,按照此处的步骤:http://deeplearning.net/software/theano/install.html#id9,我尝试从Canopy终端执行命令theano-nose。我收到一条错误消息“无法找到theano-nose”。有人能告诉我可能出现的问题吗?

1 个答案:

答案 0 :(得分:0)

theano-nose来自命令行。但你的shell需要能够找到它。

很有可能它没有在Windows上正确安装,或者您需要重新启动或注销/登录。我不记得该级别的Windows特性。

但是一个简单的解决方法是启动python并运行它:

import theano
theano.test()

这相当于您想要做的事情。