I'm trying to install pylearn2. I'm using a fresh virtual environment where I've only install the development versions of theano and pygpu. I have tested them and both are working fine. However, when I try to install pylearn2 I get this error:
$ python setup.py develop
Traceback (most recent call last):
File "setup.py", line 8, in <module>
from theano.compat.six.moves import input
ImportError: No module named six.moves
I have tried installing six as was suggested in some places, but it tells me that it's already been installed:
$ pip install six
Requirement already satisfied: six in /home/virt_env/virt1/lib/python2.7/site-packages
Has anyone else run into this problem?
there is a good idea to edit setup.py
from theano.compat.six.moves import input
from six.moves import input
thanks Jyothish Soman this is ok. other
to change the version about Theano like:
pip install Theano==0.8
because pylearn2 have version request
python
import pylearn2
print pylearn2.version.version
you can see
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With