Я проходил «Modern React with Redux Course» на Udemy, там инструктор попросил сначала установить NodeJ, а затем установить «npm install -g create-реагировать-приложение». Когда я попытался запустить эту команду, я получилошибка: -
npm install -g create-react-app
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules
npm ERR! path /usr/local/lib/node_modules
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules'
npm ERR! { [Error: EACCES: permission denied, access '/usr/local/lib/node_modules']
npm ERR! stack:
npm ERR! 'Error: EACCES: permission denied, access \'/usr/local/lib/node_modules\'',
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/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! /Users/nitintushir/.npm/_logs/2019-09-20T15_22_12_437Z-debug.log
, затем я прохожу несколько вопросов по stackoverflow, где кто-то предлагает выполнить эту команду: -
npm cache clean --force
, к которой я получил:
npm WARN using --force I sure hope you know what you are doing.
затем я снова запускаю команду
npm install -g create-react-app
, но все равно получаю ту же ошибку, любое решение / предложение?