我想在 Python 中读取 Fortran 90 二进制文件,因此有一个为 Scipy 开发的模块,称为“fortranFile”,如此处给出的fortranFile 模块
如何在 python 中包含这个模块,以便我可以从我的代码中调用它
import fortranFile
f = fortranFile('file.bin')
x = f.readReals('f')
print x
现在,我得到了错误
Traceback (most recent call last):
File "readfortbin.py", line 5, in <module>
from fortranFile import fortranFile
ImportError: cannot import name fortranFile
我在 /usr/lib/python2.7/dist-packages 目录中创建了一个文件夹“fortranFile”,并将“fortranFile.py”文件添加到该文件夹中。我知道我遗漏了一些东西......请建议我应该如何进行。