Trouble installing with spack #74
Unanswered
sampotter
asked this question in
Troubleshooting
Replies: 1 comment 1 reply
-
Do you happen to have the build log? (Or is there a way for you to recreate it?) I'm curious whether the final link step is done using the C++ compiler. Could you run You could probably work around this by running |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trying to use meshpy on a cluster with spack.
After installing spack, I install and load several standard and necessary packages:
gcc
,python
,py-pip
, etc. Just the default version of each that is available.Using spack's version of pip, I install pybind11. Then I clone meshpy from GitHub and try to install it. This seems to work, at least initially. Using, e.g.,
python setup.py install --user
orpip install .
leads to the same error. Namely (encountered while trying toimport meshpy.triangle as triangle
):Looks like the C++ standard library isn't getting linked. Presumably this is because of some version mismatch along the way. Any thoughts?
Beta Was this translation helpful? Give feedback.
All reactions