在 Windows 上安装 Theano 的这两种方式有什么区别?

What is the difference between these 2 ways of installing Theano on Windows?

我想在我的 windows 8.1 x64 机器上安装 Theano。我已经有了 python 2.7.x 版本的 anaconda(最新的 64 位)。

我有两种安装方式:

  # Option 1 : from pip 
  pip install Theano

  # Option 2 : Bleeding edge from git
  pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git

谁能告诉我两者之间的主要区别以及建议安装哪一个?

我想使用下面的命令,您可能最终会安装旧版本的 Theano,即所有缺少的更新等。

pip install Theano

使用命令进行 bleeding edge version 安装时,您可能会获得 Theano 的更新(最新开发者)版本。

pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git

这一行用于安装theano:

pip install Theano 

另一个命令用于更新已安装的 theano:

pip install --upgrade --no-deps git+git://github.com/Theano/Theano.git