尝试通过 Homebrew 安装 MySQL。安装似乎运行正常,但我收到错误:
"Error: The linking step did not complete successfully
The formula built, but is not symlinked into /usr/local
You can try again using `brew link mysql'"
自然,在此之后我运行了:
brew link mysql
吐出的是:
Error: Could not symlink file: /usr/local/Cellar/mysql/5.5.20/include/typelib.h
/usr/local/include is not writable. You should change its permissions.
所以我用它运行它sudo
并得到一个“懦弱的拒绝酿造链接mysql”。
答案1
显然该文件夹不属于您。只需尝试:
sudo chown -R $(whoami) /usr/local/include
你绝不必须使用brew
。sudo
如果这样做,则说明您的安装存在问题。
然后,link
再次尝试该命令。
答案2
slhck 的回答很棒,但我认为如果你是管理员组的成员(如果你使用 Homebrew 则可能是),让 /usr/local 中的所有位置对组可写,这样会更干净一些。
sudo chmod -R g+w /usr/local