python setup.py install error -- couldn't find Eigen headers
allisony opened this issue · 2 comments
allisony commented
The vendor/eigen/ directory is empty and this raises the RuntimeError "couldn't find Eigen headers". I see in earlier versions that this directory is not empty, and I was able to install version 0.3.1 successfully.
dfm commented
To install from source, follow the instructions from the docs: https://george.readthedocs.io/en/latest/user/quickstart/#from-source
In particular, don't forget the --recursive
in the clone (that's the issue you're seeing) and don't run setup.py
directly (use python -m pip install -e .
instead!).
allisony commented
Thank you, Dan!