本文介绍了pyfits不适用于Windows 64位的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 Windows 7 Home Basic 64位.我想使用python 3.3中的 FITS文件,因此下载了pyfits和numpy以获得64位. 导入pyfits 时,出现以下错误:
I am using windows 7 home basic 64 bit. I wanted to work with FITS file in python 3.3 so downloaded pyfits and numpy for 64 bit. When I import pyfits I get the following error:
推荐答案
这是导入numpy而不是pyfits的问题.您可以知道,因为回溯是在尝试导入numpy multiarray模块时结束的.
This is a problem importing numpy, not pyfits. You can tell because the traceback ended upon trying to import the numpy multiarray module.
此错误表明您所安装的numpy并非与Python安装所使用的体系结构相同.
This error suggests that the numpy you have installed was not built for the same architecture as your Python installation.
这篇关于pyfits不适用于Windows 64位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!