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