I installed the software of the subject referring to the following, but I was a little addicted to it, so I wrote it as an article
As per the original article, install the following:
brew update
brew install python3
pip3 install --upgrade setuptools
pip3 install --upgrade pip
brew linkapps
pip3 install numpy
I'm addicted to it here.
It was good so far, but I got an error when installing gfortran
.
According to him, gfortran was absorbed in the gcc package.
So instead of brew install gfortran
brew install gcc
Then go back to the original article
easy_install cython
brew install swig
pip3 install git+http://github.com/scipy/scipy/
You have now installed SciPy.
matplotlib
Are you addicted to here? Part 2. In the original article, the freetype path was not good and I put a symbolic link, It seems unnecessary now.
brew install freetype
# sudo ln -s /usr/local/include/freetype2 /usr/include/freetype ##No need!
pip3 install matplotlib
IPython
As in the original article, you can install it with:
pip3 install ipython
Recommended Posts