欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ubuntu19 安装Theano出现“No module named ‘theano.compat.six’”

程序员文章站 2022-05-07 09:26:11
解决办法:直接在下载好pythearn2包的目录下,对setup.py文件进行修改:将 from theano.compat.six.moves import input 改为 from six.moves import input 然后就可以: python setup.py build pyth ......

解决办法:
直接在下载好pythearn2包的目录下,对setup.py文件进行修改:
将  from theano.compat.six.moves import input 改为  from six.moves import input

然后就可以:

python setup.py build
python setup.py install