zoukankan      html  css  js  c++  java
  • theano import error (win10 python2.7)

    因为项目需要,在win10-64位电脑上配置theano.
    但是一直有 import error的错误,找不到解决方法。
    作为一个python新手,实在搞不定,请大家不吝赐教!小女子不胜感激!

    按照网上的教程,安装了anaconda2, 版本是4.2.0;
    conda install mingw libpython安装了mingw libpython;mingw版本是4.7,libpython版本是2.0
    修改了系统的环境变量如下:

    在系统变量中添加了PYTHONPATH 变量值为 E:AnacondaLibsite-packagestheano

    在cmd窗口的起始目录下,新建了 .theanorc.txt 文件(按照教程来的)

    在cmd窗口里输入pip install theano安装了theano,版本是0.9.0

    在cmd中打开python,输入:import theano 之后出现错误提示信息:
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    ImportError: No module named theano

    然后我在Spyder的Ipython console中输入:import theano
    出现了不一样的import error:
    Traceback (most recent call last):
    File "<ipython-input-1-3397704bd624>", line 1, in <module>

    import theano

    File "E:Anacondalibsite-packagestheano__init__.py", line 66, in <module>

    from theano.compile import (

    File "E:Anacondalibsite-packagestheanocompile__init__.py", line 10, in <module>

    from theano.compile.function_module import *

    File "E:Anacondalibsite-packagestheanocompilefunction_module.py", line 18, in <module>

    from theano import config, gof

    ImportError: cannot import name gof
    如图:

    有人说可能是存在多个版本的theano,但我只安装过这个版本。
    用pip uninstall theano卸载了之后,又pip install theano,还是没有解决这个问题。
    有人说是因为有cygwin和Mingw,cygwin的环境变量path还在mingw之前,可我并没有cygwin这个包。
    总之试了一些方法,仍然解决不了我的问题。

    不知该怎么解决,希望大家给些帮助,谢谢!


    theano import error (win10 python2.7) >> python

    这个答案描述的挺清楚的:
    http://www.goodpm.net/postreply/python/1010000008982858/theanoimporterrorwin10python27.html
  • 相关阅读:
    .net源码分析 – List<T>【转】
    js如何安全扩展系统函数
    ASP.NET Core 资源打包与压缩
    Jwt介绍
    Asp.Net Core中JWT刷新Token解决方案【转】
    关于同步方法里面调用异步方法引起死锁【转】
    CountDownEvent
    读写锁-ReaderWriterLockSlim
    自旋锁-SpinLock
    原子操作-Interlocked(CAS算法实现)
  • 原文地址:https://www.cnblogs.com/scrumme/p/6985097.html
Copyright © 2011-2022 走看看