Brew 安装旧版本的软件

问题

默认的

brew install  XXX

安装的都是最高版本的软件
用brew 装了 python3.7, 与第三方模块不兼容,一旦import,python就挂了,segmentation fault.. 我日

解决方案

https://github.com/Homebrew/homebrew-core/commits/master/Formula/python.rb 

首先卸载python3.7, brew uninstall python
找到对应的旧版本的 commit, 点击 view 后, 以 raw 模式打开,保存文件到本地。
将下载的python.rb文件替换到下面的

/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/

路径
直接安装

brew install python

你可能感兴趣的:(Brew 安装旧版本的软件)