Answers for "Error: EACCES: permission denied, symlink '../lib/node_modules/gatsby-cli/cli.js' -> '/usr/local/bin/gatsby'"

5

npm EACCES: permission denied, access '/usr/local/lib'

sudo chown -R $(whoami) ~/.npm

mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
source ~/.profile
Posted by: Guest on September-12-2020
2

Error: EACCES: permission denied, access '/usr/local/lib/node_modules'

sudo npm install -g nodemon
//easiest fix
Posted by: Guest on February-25-2021
1

npm ERR! path /usr/local/lib/nodejs/node-v10.15.3-linux-x64/lib/node_modules while installing angular cli

It's not recommended to use sudo with npm install, follow the steps from npmjs official docs instead :)

Make a directory for global installations:

mkdir ~/.npm-global

Configure npm to use the new directory path:

npm config set prefix '~/.npm-global'

Open or create a ~/.profile file and add this line:

export PATH=~/.npm-global/bin:$PATH

Back on the command line, update your system variables:

source ~/.profile

Test: Download a package globally without using sudo.

npm install -g typescript

    Source: https://docs.npmjs.com/getting-started/fixing-npm-permissions
Posted by: Guest on June-06-2020

Code answers related to "Error: EACCES: permission denied, symlink '../lib/node_modules/gatsby-cli/cli.js' -> '/usr/local/bin/gatsby'"

Browse Popular Code Answers by Language