Guest User

Fenics import error

a guest
Nov 8th, 2016
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | None | 0 0
  1. ---------------------------------------------------------------------------
  2. ImportError                               Traceback (most recent call last)
  3. <ipython-input-1-1ecb0c01ef73> in <module>()
  4. ----> 1 import fenics
  5.  
  6. /usr/lib/python2.7/dist-packages/fenics/__init__.py in <module>()
  7.       5 """
  8.      6
  9. ----> 7 from dolfin import *
  10.  
  11. /usr/lib/python2.7/dist-packages/dolfin/__init__.pyc in <module>()
  12.     15
  13.     16 # Import names from the compiled cpp modules
  14. ---> 17 from . import cpp
  15.     18 from dolfin.cpp import *
  16.     19 from dolfin.cpp import __version__, __swigversion__, __pythonversion__
  17.  
  18. /usr/lib/python2.7/dist-packages/dolfin/cpp/__init__.py in <module>()
  19.     41
  20.     42     # Import the module
  21. ---> 43     exec("from . import %s" % module_name)
  22.     44     module = globals()[module_name]
  23.     45
  24.  
  25. <string> in <module>()
  26.  
  27. /usr/lib/python2.7/dist-packages/dolfin/cpp/common.py in <module>()
  28.     30                 fp.close()
  29.     31             return _mod
  30. ---> 32     _common = swig_import_helper()
  31.     33     del swig_import_helper
  32.     34 else:
  33.  
  34. /usr/lib/python2.7/dist-packages/dolfin/cpp/common.py in swig_import_helper()
  35.     26         if fp is not None:
  36.     27             try:
  37. ---> 28                 _mod = imp.load_module('_common', fp, pathname, description)
  38.     29             finally:
  39.     30                 fp.close()
  40.  
  41. ImportError: /usr/lib/x86_64-linux-gnu/libfftw3_mpi.so.3: undefined symbol: fftw_ialignment_of
Advertisement
Add Comment
Please, Sign In to add comment