You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.12/site-packages/ndelement/__init__.py", line 3, in <module>
from ndelement import reference_cell, quadrature, polynomials, ciarlet
File "/usr/local/lib/python3.12/site-packages/ndelement/reference_cell.py", line 6, in <module>
from ndelement._ndelementrs import lib as _lib, ffi as _ffi
File "/usr/local/lib/python3.12/site-packages/ndelement/_ndelementrs/__init__.py", line 6, in <module>
lib = ffi.dlopen(os.path.join(os.path.dirname(__file__), '_ndelementrs.so'))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
OSError: cannot load library '/usr/local/lib/python3.12/site-packages/ndelement/_ndelementrs/_ndelementrs.so': libblas-babdd0d2.so.3: cannot open shared object file: No such file or directory
Bug Description
Unable to find shared object when importing libary on Ubuntu.
Your maturin version (
maturin --version
)1.7.1
Your Python version (
python -V
)3.10.12
Your pip version (
pip -V
)23.2.1
What bindings you're using
cffi
Does
cargo build
work?If on windows, have you checked that you aren't accidentally using unix path (those with the forward slash
/
)?Steps to Reproduce
Getting this error when building https://github.com/bempp/ndelement, eg in the yanked pypi releases (https://pypi.org/project/ndelement/0.1.0.dev2/). Can get error locally by running:
maturin build pip install target/wheels/ndelement-....whl python -c "import ndelemement"
The text was updated successfully, but these errors were encountered: