首页 文章

将Theano安装与Anaconda安装集成

提问于
浏览
2

我按照网站上的说明安装了Theano:

  • 克隆git

  • 运行命令 python setup.py develop

  • ......

我正在使用Pycharm和Anaconda安装作为我的翻译 . 如何将我的新Theano安装与我的Anaconda解释器集成并使其成为"Anaconda environment"的一部分? (Theano在 C:\Theano ,Anaconda在 C:\...\Users\me\anaconda3\etc...

My Theano installation actually shows up in my Pycharm -> Settings -> Interpreter window (location: C:\Theano) But when I reference it in code, it is not recognized.

1 回答

  • 1

    您可以使用 conda 安装Theano:

    conda install -c https://conda.anaconda.org/ideas theano
    

    这为Windows 64提供了0.7 . 它应该与Anaconda一起使用 .

相关问题