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
  • 相关阅读:
    第十周博客总结
    校验码
    python-第五章习题
    python 课后习题 猜数游戏
    python 数据分析师
    python opencv图像的均值滤波、中值滤波和高斯滤波
    RPC原理及RPC实例分析
    eclipse Android创建相对布局和线性布局,主界面跳转
    python 安装opencv库的方法及图像边缘检测例子
    第三周博客总结
  • 原文地址:https://www.cnblogs.com/scrumme/p/6985097.html
Copyright © 2011-2022 走看看