npm will not install express?

后端 未结 8 1057
臣服心动
臣服心动 2020-12-23 11:39

I currently have node.js version 0.8.8, and npm 1.1.59 installed.

Whenever I run:

$ npm install -g express

I get this in return:<

8条回答
  •  情话喂你
    2020-12-23 12:11

    i got the same problem , This problem is caused because the .npm directory in your home directory was created with root privileges.

    use :

    $sudo npm install -g express
    

提交回复
热议问题