File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -456,13 +456,27 @@ Ubuntu
456456```
457457sudo apt install libcgal-dev libeigen3-dev
458458```
459+ On MacOS with homebrew,
460+ ```
461+ brew install cgal eigen
462+ ```
459463After that, pygalmesh can be [ installed from the Python Package
460464Index] ( https://pypi.org/project/pygalmesh/ ) , so with
461465```
462466pip install -U pygalmesh
463467```
464468you can install/upgrade.
465469
470+ #### Troubleshooting
471+ If pygalmesh fails to build due to ` fatal error: 'Eigen/Dense' file not found `
472+ you will need to create a symbolic link for Eigen to be detected, e.g.
473+ ```
474+ cd /usr/local/include
475+ sudo ln -sf eigen3/Eigen Eigen
476+ ```
477+ It's possible that ` eigen3 ` could be in ` /usr/include ` instead of
478+ ` /usr/local/install ` .
479+
466480#### Manual installation
467481
468482For manual installation (if you're a developer or just really keen on getting
You can’t perform that action at this time.
0 commit comments