具体报错如下
Error: The following directories are not writable by your user
问题描述
Error: The following directories are not writable by your user:
/usr/local/include
/usr/local/lib
/usr/local/lib/pkgconfig
You should change the ownership of these directories to your user. sudo chown -R $(whoami) /usr/local/include /usr/local/lib /usr/local/lib/pkgconfig
问题解决
<!--not writable的目录,把权限移除就可以安装了,有多少个目录就要移除多少个目录-->
sudo chown -R `whoami`:admin /usr/local/include
# 需要输入密码