I am using conda
to install theano with python3.6 but got below error:
$ conda install theano
Fetching package metadata ...........
Solving package specifications: .
UnsatisfiableError: The following specifications were found to be in conflict:
- python 3.6*
- theano -> python 2.7* -> openssl 1.0.1*
Use "conda info <package>" to see the dependencies for each package.
It seems that theano doesn't work with python3.6. Is this a way for me to install it with python3.6?
No, there is no conda package for theano on Python 3.6:
https://repo.continuum.io/pkgs/free/linux-64/
You can chose from 2.7, 3.4 and 3.5.
Alternatively you can build Theano from source using pip
:
pip install Theano