2016-11-10 2 views
2

Ich versuche meine statische Website zu implementieren und für das ich versucheZugriff verweigert, wenn npm dist läuft

npm run dist 

Welche

copyfiles -f ./src/index.html ./src/favicon.ico ./dist 

Es scheint, als ob

/Users/Alfred/React/newReactWebpack/reactWebpack/node_modules/.bin/webpack 
läuft zu laufen

ist vom Lesen/Schreiben gesperrt. Ich habe versucht, chmod 775 zu verwenden, und ich habe auch versucht, es über Sudo auszuführen. Nichts half. Weiß jemand, was könnte falsch sein?

Danke!


Die Konsole, nachdem ich den Befehl ausführen:

[email protected] dist /Users/Alfred/React/newReactWebpack/reactWebpack 
npm run copy & webpack --env=dist 
sh: /Users/Alfred/React/newReactWebpack/reactWebpack/node_modules/.bin/webpack: Permission denied 

npm ERR! Darwin 16.1.0 
npm ERR! argv "/usr/local/Cellar/node/6.2.2/bin/node" "/usr/local/bin/npm" "run" "dist" 
npm ERR! node v6.2.2 
npm ERR! npm v3.9.5 
npm ERR! code ELIFECYCLE 
npm ERR! [email protected] dist: npm run copy & webpack --env=dist 
npm ERR! Exit status 126 
npm ERR! 
npm ERR! Failed at the [email protected] dist script 'npm run copy & webpack --env=dist'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the templateApp package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR! npm run copy & webpack --env=dist 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR! npm bugs templateApp 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR! npm owner ls templateApp 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR! /Users/Alfred/React/newReactWebpack/reactWebpack/npm-debug.log 

[email protected] copy /Users/Alfred/React/newReactWebpack/reactWebpack 
copyfiles -f ./src/index.html ./src/favicon.ico ./dist 
sh: /Users/Alfred/React/newReactWebpack/reactWebpack/node_modules/.bin/copyfiles: Permission denied 

npm ERR! Darwin 16.1.0 
npm ERR! argv "/usr/local/Cellar/node/6.2.2/bin/node" "/usr/local/bin/npm" "run" "copy" 
npm ERR! node v6.2.2 
npm ERR! npm v3.9.5 
npm ERR! code ELIFECYCLE 
npm ERR! [email protected] copy: copyfiles -f ./src/index.html ./src/favicon.ico ./dist 
npm ERR! Exit status 126 
npm ERR! 
npm ERR! Failed at the [email protected] copy script 'copyfiles -f ./src/index.html ./src/favicon.ico ./dist'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the templateApp package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR! copyfiles -f ./src/index.html ./src/favicon.ico ./dist 
npm ERR! You can get information on how to open an issue for this project with: 
npm ERR! npm bugs templateApp 
npm ERR! Or if that isn't available, you can get their info via: 
npm ERR! npm owner ls templateApp 
npm ERR! There is likely additional logging output above. 

npm ERR! Please include the following file with any support request: 
npm ERR! /Users/Alfred/React/newReactWebpack/reactWebpack/npm-debug.log 
+0

Haben Sie versucht, 'rm -rf node_modules', gefolgt von' npm Cache clear', gefolgt von 'npm install'? – RyanZim

Antwort

2

Wenn Sie

chmod 775 /Users/Alfred/React/newReactWebpack/reactWebpack/node_modules/.bin/webpack

es wird nur die Erlaubnis von /webpack ändern.

Versuchen chmod 775 -R /Users/Alfred/React diese rekursiv die Berechtigungen für alle Ordner und Dateien unter /React

ändern Wenn das nicht funktioniert, versuchen Sie das Gleiche mit chown Ihrem Benutzernamen.

chmod 775 on a folder but not all files under that folder

Verwandte Themen