[Bug]: EACCES: permission denied
See original GitHub issueIs there an existing issue for this?
- I have searched the existing issues
Current Behavior
Command ‘Reload Vibrancy’ resulted in an error (A system error occurred (EACCES: permission denied, mkdir ‘/Applications/Visual Studio Code.app/Contents/Resources/app/out/vscode-vibrancy-runtime-v6’))
Expected Behavior
No response
Steps To Reproduce
No response
Environment
- OS:
- VSCode:
- Extension:
Anything else?
I have VSCode in my applications folder.
Issue Analytics
- State:
- Created a year ago
- Comments:11 (6 by maintainers)
Top Results From Across the Web
Error: EACCES: permission denied - node.js - Stack Overflow
I run npm install lodash but it throws Error: EACCES: permission denied error. I know it is permission issue but as far as...
Read more >Error: EACCES: permission denied with npm - How to fix
This error is typically seen while trying to install a new npm package globally in a system. Here at Bobcares, we often handle...
Read more >Fix NPM EACCES permission denied errors ... - YouTube
How to fix eacces permission denied errors with npm when installing a global package using Ubuntu. ... Eacces error with global npm.
Read more >NPM Install - Resolving EACCES Permissions Denied
How to resolve eacces permissions denied when installing npm packages globally. Here's how you solve this issue in a couple of minutes.
Read more >Error: listen EACCES: permission denied :::8059 in my azure ...
I have started running into an issue with a couple of my azure web apps. I get the included error message when I...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Seems like your VSCode was installed by another user, so your user account doesn’t have permissions to modify it. To solve this, go to /Applications, find Visual Studio Code.app, right click → Get Info, and make sure that your account has Read & write permissions in the Sharing & Permissions section.
Edit: my previous solution doesn’t solve the issue fully, running
sudo chown -R $(whoami):staff "/Applications/Visual Studio Code.app/"
in a terminal should fix this.The command in your screenshot is different from the one I’ve provided, you need to copy and paste it exactly as it appears in my comment. Also, make sure that you’re not using smart quotes in your commands. As long as you copy directly from your web browser into the Terminal, you should be fine.