Angular ubunu 中的 CLI 安装错误 - 我在 ubuntu 机器上尝试 运行 angular CLI 命令时遇到错误
Angular CLI installation error in ubunu - I have get an error when I am trying to run angular CLI command in my ubuntu machine
我遇到了这个错误。
我已经在我的系统中安装了 node js 和 npm。
我也有删除 npm 缓存。
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib/node_modules
npm ERR! errno -13
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: '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.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/user/.npm/_logs/2020-11-03T18_21_04_293Z-debug.log
~~~
不要使用 sudo
来解决这个问题。按照 Ubuntu 中的预期方式使用 sudo
:对于每个需要它的命令,仅此而已。不要使用 sudo
到 运行 命令,除非它需要是 root。例如,大多数用户只需要 sudo
来安装东西。
你试过了吗,manually change npm's default directory?
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
source ~/.profile
要测试您的新配置,请在不使用 sudo
的情况下全局安装包:
npm install -g @angular/cli
我遇到了这个错误。 我已经在我的系统中安装了 node js 和 npm。 我也有删除 npm 缓存。
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib/node_modules
npm ERR! errno -13
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: '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.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/user/.npm/_logs/2020-11-03T18_21_04_293Z-debug.log
~~~
不要使用 sudo
来解决这个问题。按照 Ubuntu 中的预期方式使用 sudo
:对于每个需要它的命令,仅此而已。不要使用 sudo
到 运行 命令,除非它需要是 root。例如,大多数用户只需要 sudo
来安装东西。
你试过了吗,manually change npm's default directory?
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
source ~/.profile
要测试您的新配置,请在不使用 sudo
的情况下全局安装包:
npm install -g @angular/cli