Open SeffyVon opened 1 year ago
Your setup seems spot-on, through adding the location of the .so
library to PYTHONPATH
.
I'm curious about what exception got generated. I'll try to take a look. It might be as simple as bringing my most recent changes from my fork to the "official" repo (this one).
Hi, I am using Mac Montery OS with M1 Max Chip, and homebrew to install all the dependencies.
I configured b2/core and make-installed the core to
/usr/local/
using the following command, with only 9 PASS and 1 FAIL (b2_class_test).I then configured b2/python using
command, then make-installed.
pip3 install --upgrade .
I ran
python3
andimport pybertini
, but I got the following error:I think this is because the
_pybertini.so
was installed in/usr/local/lib/python3.11/site-packages
, outside the PYTHONPATH, so I addedexport PYTHONPATH=/usr/local/lib/python3.11/site-packages:$PYTHONPATH
.Again, I ran
python3
andimport pybertini
. This time another error appeared:I attached config.log under
b2/python
. Please help, thank you!