Skip to content

Latest commit

History

History
7 lines (4 loc) 路 1.54 KB

permission_denied_error.md

File metadata and controls

7 lines (4 loc) 路 1.54 KB

In this case, it鈥檚 likely your user account has no admin rights so you don鈥檛 have permissions to write to /Applications (which is the default). You can use --appdir to choose where to install your applications.

If --appdir doesn鈥檛 fix the issue or you do have write permissions to /Applications, verify you鈥檙e the owner of the Caskroom directory by running ls -dl "$(brew --prefix)/Caskroom" and checking the third field. If you are not the owner, fix it with sudo chown -R "$(whoami)" "$(brew --prefix)/Caskroom". If you are, the problem may lie in the app bundle itself.

Some app bundles don鈥檛 have certain permissions that are necessary for us to move them to the appropriate location. You may check such permissions with ls -ls {{path_to_app_bundle}}. If you see something like dr-xr-xr-x at the start of the output, that may be the cause. To fix it, we change the app bundle鈥檚 permission to allow us to move it, and then set it back to what it was (in case the developer set those permissions deliberately). See litecoin for an example of such a cask.

Help us by submitting a fix. If you get stumped, open an issue explaining your steps so far and where you鈥檙e having trouble.