在 IPython 的 Ubuntu 13.04 中导入 PyTables 时出现以下错误:
In [1]: from tables import *
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-4c3ea368be2a> in <module>()
----> 1 from tables import *
/usr/local/lib/python2.7/dist-packages/tables/__init__.py in <module>()
80
81 # Necessary imports to get versions stored on the cython extension
---> 82 from tables.utilsextension import (get_pytables_version, get_hdf5_version,
83 getPyTablesVersion, getHDF5Version) # Pending Deprecation!
84
ImportError: libhdf5.so.8: cannot open shared object file: No such file or directory
我已经采取了以下措施:
- 正确设置 LD_LIBRARY_PATH 和 PATH 环境变量,并通过回显它们的值来验证它们指向正确的路径。
- 确保文件 libhdf5.so.8 在路径中可用
- 启动了一个新的终端
- 在终端中,我执行了 source /etc/environment 并在这些文件中设置了变量。
- Ran ipython 命令启动 ipython 控制台
感谢你的帮助。