python theano-anconda下import theano出错

问题描述

anconda下import theano出错
我在window下安装了anconda,mingw,libpython和theano用conda list都可以看到,可是在ipython下import theano出现如下错误
Exception Traceback (most recent call last)
in ()
----> 1 import theano

D:Program FilesAnaconda2libsite-packagestheano__init__.pyc in ()
61 object2 utils)
62
---> 63 from theano.compile import (
64 SymbolicInput In
65 SymbolicOutput Out

D:Program FilesAnaconda2libsite-packagestheanocompile__init__.py in ()
7 SpecifyShape specify_shape register_specify_shape_c_code)
8
----> 9 from theano.compile.function_module import *
10
11 from theano.compile.mode import *

D:Program FilesAnaconda2libsite-packagestheanocompilefunction_module.py in ()
20 from theano.compat import izip
21 from theano.gof import graph
---> 22 import theano.compile.mode
23 from theano.compile.io import (
24 In SymbolicInput SymbolicInputKit SymbolicOutput)

D:Program FilesAnaconda2libsite-packagestheanocompilemode.py in ()
10 import theano
11 from theano import gof
---> 12 import theano.gof.vm
13 from theano.configparser import config
14 from theano.compile.ops import _output_guard

D:Program FilesAnaconda2libsite-packagestheanogofvm.py in ()
636
637 try:
--> 638 from . import lazylinker_c
639
640 class CVM(lazylinker_c.CLazyLinker VM):

D:Program FilesAnaconda2libsite-packagestheanogoflazylinker_c.py in ()
124 args = cmodule.GCC_compiler.compile_args()
125 cmodule.GCC_compiler.compile_str(dirname code location=loc
--> 126 preargs=args)
127 # Save version into the init.py file.
128 init_py = os.path.join(loc '__init__.py')

D:Program FilesAnaconda2libsite-packagestheanogofcmodule.pyc in compile_str(module_name src_code location include_dirs lib_dirs libs preargs py_module hide_symbols)
2194 # difficult to read.
2195 raise Exception('Compilation failed (return status=%s): %s' %
-> 2196 (status compile_stderr.replace('n' '. ')))
2197 elif config.cmodule.compilation_warning and compile_stderr:
2198 # Print errors just below the command line.

. ception: Compilation failed (return status=1): g++.exe: error: FilesAnaconda2MinGW: No such file or directory

哪位大侠能帮我看下什么问题?谢谢

时间: 2024-11-02 22:12:45

python theano-anconda下import theano出错的相关文章

深度学习-anconda在import theano失败,求大神帮助!!

问题描述 anconda在import theano失败,求大神帮助!! Problem occurred during compilation with the command line below: C:MinGWbing++.exe -shared -g -march=core-avx2 -mcx16 -msahf -mmovbe -maes -mpclmul -mpopcnt -mabm -mno-lwp -mno-fma -mno-fma4 -mn o-xop -mbmi -mbmi2

python theano-theano 安装好之后import theano出错,求大神帮助!

问题描述 theano 安装好之后import theano出错,求大神帮助! 我在win7(64bit)下安装了Anaconda和theano,在import theano时出错: import theano Traceback (most recent call last): File "", line 1, in File "E:jingAnacondalibsite-packagestheano__init__.py", line 55, in from t

机器学习theano安装-import theano 时 'size_t' does not name a type

问题描述 import theano 时 'size_t' does not name a type GC_Malloc' is marked 'dllimport' C:Anacondainclude/objimpl.h:306:44: error: 'size_t' was not declared in cope In file included from C:Anacondainclude/unicodeobject.h:120:0, from C:Anacondainclude/Pyt

win8下安装theano报错

问题描述 win8下安装theano报错 解决方案 Win8下的SAP安装初体验----------------------

python实现linux下使用xcopy的方法

  本文实例讲述了python实现linux下使用xcopy的方法.分享给大家供大家参考.具体如下: 这个python函数模仿windows下的xcopy命令编写,可以用在linux下 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 #!

Python中的下划线详解

  这篇文章主要介绍了Python中的下划线详解,本文讲解了单个下划线直接做变量名.单下划线前缀的名称.双下划线前缀的名称等内容,需要的朋友可以参考下 这篇文章讨论Python中下划线_的使用.跟Python中很多用法类似,下划线_的不同用法绝大部分(不全是)都是一种惯例约定. 一. 单个下划线直接做变量名(_) 主要有三种情况: 1. 解释器中 _符号是指交互解释器中最后一次执行语句的返回结果.这种用法最初出现在CPython解释器中,其他解释器后来也都跟进了. 代码如下: >>> _

python在windows下创建隐藏窗口子进程的方法

  本文实例讲述了python在windows下创建隐藏窗口子进程的方法.分享给大家供大家参考.具体实现方法如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 import subprocess IS_WIN32 = 'win32' in str(sys.platform).lower() def subprocess_call(*args, **kwargs): #also works for Popen. #It creates a new *hidden* window

Python简单删除目录下文件以及文件夹的方法

  本文实例讲述了Python简单删除目录下文件以及文件夹的方法.分享给大家供大家参考.具体如下: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/usr/bin/env python import os import shutil filelist=[] rootdir="/home/zoer/aaa" filelist=os.listdir(rootdir) for f in filelist: filepath = os.path.join( root

python MySQLdb Windows下安装教程及问题解决方法

  这篇文章主要介绍了python MySQLdb Windows下安装教程及问题解决方法,本文讲解了安装数据库mysql.安装MySQLdb等步骤,需要的朋友可以参考下 使用python访问mysql,需要一系列安装 linux下MySQLdb安装见 Python MySQLdb在Linux下的快速安装 http://www.jb51.net/article/65743.htm ----------------------------------------------------------