Ubuntu19 installation Theano appear "No module named 'theano.compat.six'"

Solution:
directly in the download directory pythearn2 good package, to setup.py file is modified:
the   from theano.compat.six.moves import input changed   from six.moves import input

Then you can:

python setup.py build
python setup.py install

Guess you like

Origin www.cnblogs.com/feiquan/p/12079862.html