由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 快要被Python的兼容性弄疯了
相关主题
why I can not import Tkinter?问个Python的问题
boost.python 入门问题超级新手, 求助 python pandas 和pandas_DataReader
谁知道这个嵌套的Python if 是啥意思?Help: undefined symbol
local python 安装问题repast 请进: python debian安装问题
Win32 TerminateProcess 会有memory leak吗?问python高手一个问题
调用win32 DLL的问题python smtp 587 连不上gmail, socket error?
How to compile multiple c files into one obj file?python的re怎么有很多莫名奇妙的行为, 我估计是bug吧
一个MSVC2005程序在vista下的问题我来说说python的优点吧
相关话题的讨论汇总
话题: python话题: win32话题: dll话题: pandas话题: file
进入Programming版参与讨论
1 (共1页)
J*****n
发帖数: 4859
1
弄了一个pandas
结果
DLL load failed: %1 is not a valid Win32 application.
Traceback (most recent call last):
File "", line 1, in
import pandas
File "C:\Python32\lib\site-packages\pandas\__init__.py", line 6, in <
module>
from . import hashtable, tslib, lib
ImportError: DLL load failed: %1 is not a valid Win32 application.
啥问题,如何解决?
WIN 7, 64, 3.2
谢谢
p*****2
发帖数: 21240
2
这年头学python不如学javascript
r*g
发帖数: 3159
3
去这里找来重装:
http://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas

【在 J*****n 的大作中提到】
: 弄了一个pandas
: 结果
: DLL load failed: %1 is not a valid Win32 application.
: Traceback (most recent call last):
: File "", line 1, in
: import pandas
: File "C:\Python32\lib\site-packages\pandas\__init__.py", line 6, in <
: module>
: from . import hashtable, tslib, lib
: ImportError: DLL load failed: %1 is not a valid Win32 application.

B******5
发帖数: 4676
4
换Linux吧
d***q
发帖数: 1119
5

I suggest using python 2.x instead of 3.x.
from your log: it looks like you missed some dlls.

【在 J*****n 的大作中提到】
: 弄了一个pandas
: 结果
: DLL load failed: %1 is not a valid Win32 application.
: Traceback (most recent call last):
: File "", line 1, in
: import pandas
: File "C:\Python32\lib\site-packages\pandas\__init__.py", line 6, in <
: module>
: from . import hashtable, tslib, lib
: ImportError: DLL load failed: %1 is not a valid Win32 application.

i**h
发帖数: 424
6
Not an expert in python but xxx.dll is not a valid Win32 application usually
means a failed LoadLibrary call which often is a result of missing
dependent DLLs.
l********a
发帖数: 1154
7
1.不要mix使用32位和64位的python和第三方dll,python就用32位,因为大多dll都是针
对32位编译的.
2.将dll的路径加入path环境变量
s*********e
发帖数: 1051
8
exactly

【在 B******5 的大作中提到】
: 换Linux吧
1 (共1页)
进入Programming版参与讨论
相关主题
我来说说python的优点吧Win32 TerminateProcess 会有memory leak吗?
python转化成exe的能力怎样?调用win32 DLL的问题
python哪个JSON库最好?How to compile multiple c files into one obj file?
python 2, python 3,用哪个?一个MSVC2005程序在vista下的问题
why I can not import Tkinter?问个Python的问题
boost.python 入门问题超级新手, 求助 python pandas 和pandas_DataReader
谁知道这个嵌套的Python if 是啥意思?Help: undefined symbol
local python 安装问题repast 请进: python debian安装问题
相关话题的讨论汇总
话题: python话题: win32话题: dll话题: pandas话题: file