文章目录

mac python3

1
2
3
4
5
6
7
8
9
10
Error: The following directories are not writable by your user:
/usr/local/share/man/man5
/usr/local/share/man/man7

You should change the ownership of these directories to your user.
sudo chown -R $(whoami) /usr/local/share/man/man5 /usr/local/share/man/man7

And make sure that your user has write permission.
chmod u+w /usr/local/share/man/man5 /usr/local/share/man/man7
jay:~ jaywang$ sudo chown -R $(whoami) /usr/local/share/man/man5 /usr/local/share/man/man7
文章目录
Fork me on GitHub