遇到问题 error in setup command: use_2to3 is invalid.
安装anyjson==0.3.3这个库,其他库也有可能发生
error in anyjson setup command: use_2to3 is invalid.
解决方法
pip install setuptools==57.5.0
因为在setuptools 58之后的版本已经废弃了use_2to3
安装 brew 慢的问题
参考资料
MacOS加速安装Homebrew,解决Homebrew安装很慢的问题
brew 官网
https://brew.sh/
1 官方网址(https://brew.sh/)给出的方案是这样的:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
按照此方法速度很慢
2 获取官网的install文件(https://raw.githubusercontent.com/Homebrew/install/master/install)另存为brew_install
3 更改里面的源,将
BREW_REPO = “https://github.com/Homebrew/brew“.freeze
CORE_TAP_REPO = “https://github.com/Homebrew/homebrew-core“.freeze
更改为
BREW_REPO = "https://mirrors.ustc.edu.cn/brew.git".freeze
CORE_TAP_REPO = "https://mirrors.ustc.edu.cn/homebrew-core.git".freeze
4 执行脚本,利用ruby执行
/usr/bin/ruby brew_install
5 brew 常用命令