[SciPy-user] Problems with fftpack on OS X 10.4

Tim Gray tgray at princeton.edu
Wed May 11 10:16:12 EDT 2005


Hi, I am a very happy (new) user of scipy (CVS), matplotlib (.74), and python (2.4.1) for analysis and plotting of scientific data.  I have been running a CVS version of scipy on my computer at work, which is running OS X 10.3.8.  Everything has been wonderful there.  

However, on my personal computer, I recently upgraded to OS X 10.4.  I reinstalled all my python packages and got everything working, except for scipy (again, the current CVS build).  Scipy seemed to build ok, but when I call anything in fftpack, I get the error at the end of this post.  I recompiled fftw (2.1.5) and ran make check (or test?  they all passed) before rebuilding scipy, but the error remains.  Any help would be appreciated.  

Thanks!

-------

/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site.py in __call__(self, *args, **kwds)
    326     def __call__(self, *args, **kwds):
    327         import pydoc
--> 328         return pydoc.help(*args, **kwds)
    329 
    330 def sethelper():

/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy_base/ppimport.py in _ppimport_pydoc_help_call(self, *args, **kwds)
    384     _old_pydoc_help_call = _pydoc.help.__class__.__call__
    385     def _ppimport_pydoc_help_call(self,*args,**kwds):
--> 386         return _old_pydoc_help_call(self, *map(_ppresolve_ignore_failure,args),
    387                                     **kwds)
    388     _ppimport_pydoc_help_call.__doc__ = _old_pydoc_help_call.__doc__

/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy_base/ppimport.py in _ppresolve_ignore_failure(a)
    370 
    371 def _ppresolve_ignore_failure(a):
--> 372     return ppresolve(a,ignore_failure=1)
    373 
    374 try:

/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy_base/ppimport.py in ppresolve(a, ignore_failure)
    364     if hasattr(a,'_ppimport_importer') or \
    365            hasattr(a,'_ppimport_module'):
--> 366         a = getattr(a,'_ppimport_module',a)
    367     if hasattr(a,'_ppimport_attr'):
    368         a = a._ppimport_attr

/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy_base/ppimport.py in __getattr__(self, name)
    301             module = self.__dict__['_ppimport_module']
    302         except KeyError:
--> 303             module = self._ppimport_importer()
    304         return getattr(module, name)
    305 

/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy_base/ppimport.py in _ppimport_importer(self)
    256             module = sys.modules[name]
    257         except KeyError:
--> 258             raise ImportError,self.__dict__.get('_ppimport_exc_info')[1]
    259         if module is not self:
    260             exc_info = self.__dict__.get('_ppimport_exc_info')

ImportError: Failure linking new module: /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy/fftpack/_fftpack.so: Symbol not found: _fprintf$LDBLStub
  Referenced from: /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/scipy/fftpack/_fftpack.so
  Expected in: dynamic lookup




More information about the SciPy-User mailing list