Hello,
I am attempting to contribute to the h5py project by porting the code
to python3. The code is available in the py3k branch at github
(http://github.com/darrendale/h5py/tree/py3k). So far, I am able to
build and install h5py using python3, but when I try to import it, I
get the following error:
Python 3.1.2 (release31-maint, Sep 17 2010, 20:27:33)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import h5py
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File
"/home/darren/.local/lib/python3.1/site-packages/h5py-1.3.1.dev-py3.1-linux-x86_64.egg/h5py/__init__.py",
line 24, in <module>
from . import h5
File "h5e.pxd", line 20, in init h5py.h5py.h5 (h5py/h5.c:5499)
ImportError: No module named h5py.h5e
I don't understand why the error message refers to "h5py.h5py.h5",
should I be concerned about this?
I checked the contents of my h5py install directory, and h5e.{py, pyc,
so, pyx} is certainly there. Here is the top of my h5py/h5.pyx file:
---
include "config.pxi"
from h5e cimport register_thread
import atexit
import threading
---
Could anyone offer a suggestion, or prod me for additional information
that I should have provided?
Thanks,
Darren
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev