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
I do not know if this is specific to my system (maybe it's broken), but sudo make install installs the python module to: /usr/local/lib/python3/dist-packages/grdab, which is not in my python packages path (this results in a ModuleNotFoundError: No module named 'grdab'):
I had the same issue in MacOS (Monterey 12.1). Adding the Python Dir Flag -DGR_PYTHON_DIR= to cmake ../ solved this issue for me.
So in my case with a macports install of Python cmake ../ -DGR_PYTHON_DIR=/opt/local/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages
I do not know if this is specific to my system (maybe it's broken), but
sudo make install
installs the python module to:/usr/local/lib/python3/dist-packages/grdab
, which is not in my python packages path (this results in aModuleNotFoundError: No module named 'grdab'
):I think this is because in cmake,
${CMAKE_INSTALL_PREFIX}
defaults to/usr/local
, so thecmake_install.cmake
files have the line:again, this sounds like a problem on my system (Kubuntu 21.10 x86_64.), but maybe other people are having similar problems ?
The text was updated successfully, but these errors were encountered: