1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| gunn@macmini todoapp % npm install -g nodemon
npm ERR! code EACCES
npm ERR! syscall mkdir
npm ERR! path /usr/local/lib/node_modules/nodemon
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/nodemon'
npm ERR! [Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/nodemon'] {
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'mkdir',
npm ERR! path: '/usr/local/lib/node_modules/nodemon'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/gunn/.npm/_logs/2022-12-08T01_11_59_802Z-debug-0.log
gunn@macmini todoapp % sudo chown -R root:$(whoami) /usr/local/lib/node_modules/
Password:
Sorry, try again.
Password:
chown: gunn: illegal group name
gunn@macmini todoapp % sudo chown -R root:$(administrator) /usr/local/lib/node_modules/
zsh: command not found: administrator
gunn@macmini todoapp % sudo chown -R root:$(gunn) /usr/local/lib/node_modules/
zsh: command not found: gunn
gunn@macmini todoapp % sudo chown -R root:$(users) /usr/local/lib/node_modules/
chown: gunn: illegal group name
gunn@macmini todoapp % sudo chown -R root:$(김건우) /usr/local/lib/node_modules/
zsh: command not found: 김건우
gunn@macmini todoapp % sudo chmod -R 777 /usr/local/lib/node_modules/
gunn@macmini todoapp % npm install -g nodemon
npm ERR! code EACCES
npm ERR! syscall open
npm ERR! path /Users/gunn/.npm/_cacache/tmp/928b7445
npm ERR! errno -13
npm ERR!
npm ERR! Your cache folder contains root-owned files, due to a bug in
npm ERR! previous versions of npm which has since been addressed.
npm ERR!
npm ERR! To
|