npm ERR! path /usr/local/bin/code
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/local/bin/code'
npm ERR! { Error: EACCES: permission denied, access '/usr/local/bin/code'
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/bin/code' }
npm ERR!
npm ERR! Please try running this command again as root/Administrator.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/c2cdev/.npm/_logs/2023-08-30T11_12_13_139Z-debug.log
You might get the above error in the Terminal when you try to uninstall VS Code using npm command.
Fix: As you can see in the error logs, it says please try again with root/Administrator, so try to run the same command with sudo.
sudo npm uninstall -g code
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to JavaScript,
- How to Run JavaScript on Mac Terminal
- Get Current time in GMT/UTC using JavaScript
- How to yarn reinstall all Packages
- [javaScript] Convert text case to lowercase
- Get Device Screen Width and Height using javaScript
- Fix - npm start: sh: index.js: command not found
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- JavaScript: Convert an Image into Base64 String
- JavaScript : Get current page address
- How to get query string in JavaScript HTML location.search
- Create React App using npm command with TypeScript
- JavaScript: Count Words in a String
- Add Animated Scrolling to Html Page Title Script
- How to send email from JavaScript HTML using mailto
- Javascript convert text case from uppercase to lowercase
- Submit html form on dropdown menu value selection or change using javascript
- Send Extra Data with Ajax Get or Post Request
- Fix: SyntaxError: The requested module does not provide an export named default
- Examples: Convert String to int in JavaScript
- 10 ways to Convert String to a Number in JavaScript
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- Fix: ReferenceError: require is not defined in ES module scope [Node]
- [JavaScript] Remove all Newlines From String
- How to detect Browser and Operating System Name and Version using JavaScript
More Posts:
- How to Close Safari in Mac using Keyboard shortcut - MacOS
- HTTP Status Code Checker Tool (200/301/302/400/500/503) - Tools
- Find the Wi-Fi Password on your Windows 10/11 Operating System Device - Windows
- List of Java JDK Versions till Year 2023 with LTS Support Included - Java
- Fix: Microsoft Excel Quit Unexpectedly on Mac - MacOS
- Calculate Volume of Cone - C-Program
- Change Google Chrome Browsers default download location - Chrome
- Difference between == and === operators in JavaScript - JavaScript