如何使用python3.6安装theano?

Zha*_* Yi 5 python theano conda

我正在使用condapython3.6安装theano,但出现以下错误:

$ 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.
Run Code Online (Sandbox Code Playgroud)

看来theano不适用于python3.6。这是我用python3.6安装的一种方法吗?

Nil*_*ner 3

不,Python 3.6 上没有 theano 的 conda 包:

https://repo.continuum.io/pkgs/free/linux-64/

您可以选择 2.7、3.4 和 3.5。

或者,您可以使用以下命令从源代码构建 Theano pip

pip install Theano
Run Code Online (Sandbox Code Playgroud)