From: Anthony S. <sc...@gm...> - 2012-08-19 15:22:53
|
Hi John, This is probably a path issue. You likely have both pytables installed and a 'tables' source sub-directory wherever you are running this from. For whatever reason, it is picking up the source version rather than the installed version. It is either that, or you simply don't have it installed correctly. The file it is missing is one which gets compiled when you run "python setup.py install" Be Well Anthony On Sat, Aug 18, 2012 at 2:28 AM, John <clo...@ya...> wrote: > I have the following import error when I try to import pytable > > ImportError Traceback (most recent call last)<ipython-input-2-389ecae14f10> in <module>()----> 1 import tables > /Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/tables/__init__.py in <module>() 28 29 # Necessary imports to get versions stored on the Pyrex extension---> 30 from tables.utilsExtension import getPyTablesVersion, getHDF5Version 31 32 > ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/tables/utilsExtension.so, 2): Symbol not found: _H5E_CALLBACK_g > Referenced from: /Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/tables/utilsExtension.so > Expected in: flat namespace > in /Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/tables/utilsExtension.so > > > > Anyone knows whats wrong with it? > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Pytables-users mailing list > Pyt...@li... > https://lists.sourceforge.net/lists/listinfo/pytables-users > > |