sudo port install numpy +atlas
It's big.
ERROR: Failed to install atlas
Apparently, the version of gcc used when building is different from the default build option of atlas. There is no choice but to reinsert the atlas.
sudo port uninstall atlas
sudo port clean atlas
sudo port install atlas +gcc48
The gcc version when building is specified in gcc48 to match the gcc default when building numpy.
This will allow numpy to install.
I have no idea which version of gcc is, so if you know the reference site, please comment.
Recommended Posts