1. 为了防止出错,首先卸载已安装的homebrew
最新命令如下:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
然后会有提示: 输入next steps中的命令
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/sherlma/.profile
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
sudo apt-get install build-essential
接下来就可以执行下面命令了:
sudo apt install linuxbrew-wrapper
3. 如果安装过程中出现curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
打开这个链接 https://www.ipaddress.com/ 查询 raw.githubusercontent.com 对应的IP地址 添加到 /etc/hosts 中
4. 如果安装过程中出现error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function
解决办法(好像是一次性有用,每次 git clone之前先执行下面的命令 ):
git config --global http.postBuffer 2000000000
有时候也可能是网络问题,下载不成功可能是下载源在国外,然后就要用…
我用的是win11自带的wsl安装的Ubuntu18,有时候可能一直失败,然后关了linux,重新打开,命令就能正确执行了。
|