Answers for "npm install error eacces permission denied"

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
1

Error: open failed: EACCES (Permission denied) react native

android:requestLegacyExternalStorage="true"

in androidManifeast.xml

<application
 android:name=".MainApplication"
 android:label="@string/app_name"
...
...

android:requestLegacyExternalStorage="true"

/>
Posted by: Guest on August-05-2020

Code answers related to "npm install error eacces permission denied"

Browse Popular Code Answers by Language