running a python script that requires matplotlib gives: ImportError: undefined symbol: __libm_sse2_sincos

603 Views Asked by At

A specific package that I'm trying to run is fastStructure. After installing all the requirements (numpy, scipy, cython, gsl, matplotlib), when I try to execute the script I get the following error:

python distruct.py
Traceback (most recent call last):
  File "distruct.py", line 2, in <module>
    import matplotlib.pyplot as plot
  File "/data003/GIF/software/packages/python/2.7.9/lib/python2.7/site-packages/matplotlib/pyplot.py", line 24, in <module>
    import matplotlib.colorbar
  File "/data003/GIF/software/packages/python/2.7.9/lib/python2.7/site-packages/matplotlib/colorbar.py", line 27, in <module>
    import matplotlib.artist as martist
  File "/data003/GIF/software/packages/python/2.7.9/lib/python2.7/site-packages/matplotlib/artist.py", line 8, in <module>
    from transforms import Bbox, IdentityTransform, TransformedBbox, \
  File "/data003/GIF/software/packages/python/2.7.9/lib/python2.7/site-packages/matplotlib/transforms.py", line 35, in <module>
    from matplotlib._path import (affine_transform, count_bboxes_overlapping_bbox,
ImportError: /data003/GIF/software/packages/python/2.7.9/lib/python2.7/site-packages/matplotlib/_path.so: undefined symbol: __libm_sse2_sincos

Does this mean that some of the requirements weren't properly installed? or Am I missing some of the basic packages that are supposed to be there on all computers? If it helps I am on a large HPC cluster, running RHEL with intel processors. I am unable to find any information about this error and I am unable to move forward. Any help will be greatly appreciated.

EDIT:

Specifically,

   import matplotlib.pyplot as plot

is what causing this error.

0

There are 0 best solutions below