Calling python3 from the terminal ultimately errors with a software not available message. I've seen this problem already noted on this forum.
Installing Homebrew installs CLT as well, and a python3 version in /usr/local/bin (version 3.9). I can then install numpy with pip3, but I cannot install scipy, which kicks up about 800 lines of error starting with openblas issues.
Has anyone successfully installed scipy with Catalina? If so, how?
Install Xcode (make sure to open and accept license)
Install CLT from https://developer.apple.com/download/more/?=command%20line%20tools (otherwise software not found error with $ xcode-select --install)
Install Homebrew
brew install python (adds 3.9)
add '/usr/local/opt/python@3.9/libexec/bin' to $PATH
fix openblas with:
and
$ export CPPFLAGS="-I/usr/local/opt/openblas/include"
7. use pip3 to install packages
I'm still interested in a non-Homebrew solution if such a thing is available. Never found one . . .