Hello. I tried to follow the steps in the terminal:
sudo chown -R ${USER}:admin /usr/local/
brew install cmake boost pcre gmp python3
brew uninstall boost-python
brew install boost-python --with-python3
brew install pkgconfig
brew install gtkmm3 adwaita-icon-theme
sudo pip3 install simps
Then, after cloning cadabra2 package:
cd cadabra2
mkdir build
export PATH=/usr/local/Cellar/bin:${PATH}
cd build
cmake ..
But I still get Python site path at anaconda3:
-- Set PYTHONPATH for testing to /Users/MVU/cadabra2/core:/Users/MVU/cadabra2/build/core/packages:/Users/MVU/cadabra2/build/core:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
PYTHON_LIBRARY (ADVANCED)
linked by target "cadabra2" in directory /Users/MVU/cadabra2/core
linked by target "cadabra2python" in directory /Users/MVU/cadabra2/core
linked by target "cadabra_server" in directory /Users/MVU/cadabra2/client_server
linked by target "cadabra_client" in directory /Users/MVU/cadabra2/client_server
-- Configuring incomplete, errors occurred!
I think I've done things in the wrong order. I mean, did I insert your line
export PATH=/usr/local/Cellar/bin:${PATH}
in the correct place? Thanks!