2015-04-19 19 views
1

我不能讓BREW鏈接pygame,當我試圖安裝pygame我得到一個權限錯誤BREW鏈接SDL無法聯繫提供權限被拒絕的錯誤

$ brew install pygame 
==> Installing pygame from homebrew/homebrew-python 
Error: You must `brew link sdl' before pygame can be installed 
$ brew link sdl 
Linking /usr/local/Cellar/sdl/1.2.15... 
Error: Could not symlink share/man/man3/SDLKey.3 
/usr/local/share/man/man3 is not writable. 

從這個錯誤消息,目前尚不清楚我應該符號鏈接?

回答

1

您應該將這些路徑的所有權歸還給您的用戶帳戶sudo chown -R $(whoami) /usr/local/share

相關問題