Я пытаюсь установить gulp на linux kubuntu но у меня такая проблема - PullRequest
0 голосов
/ 30 марта 2019

Я установил узел и npm, но не могу установить gulp

после успешной установки узла и npm, я попытался npm install -g gulp

npm ERR! path /usr/lib/node_modules
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/lib/node_modules'
npm ERR!  { [Error: EACCES: permission denied, access '/usr/lib/node_modules']
npm ERR!   stack:
npm ERR!    'Error: EACCES: permission denied, access \'/usr/lib/node_modules\'',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/usr/lib/node_modules' }
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 (though this is not recommended).

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/dilmurod/.npm/_logs/2019-03-30T09_01_16_977Z-debug.log```

1 Ответ

0 голосов
/ 30 марта 2019

По умолчанию, когда вы запускаете npm install package_name -g с флагом g, он сохраняется в папке / usr / lib / node_modules /

Эта ошибка возникает, если текущий пользователь, который выполняеткоманда npm install -g не имеет разрешения на запись в / usr / lib /

Выполните это с пользователем root или sudo npm install gulp -g

...