centos7,为什么我不能将express安装到我的服务器上?

时间:2018-05-03 07:04:18

标签: node.js npm

首先我安装节点js

sccess to application dir

cd /home/admin/web/my-domain.com/public_html

下载档案

wget https://nodejs.org/dist/v8.11.1/node-v8.11.1-linux-x64.tar.xz

提取文件

tar xvf node-v8.11.1-linux-x64.tar.xz

重命名为nodejs

mv node-v8.11.1-linux-x64 nodejs

安装

$ mkdir ~/bin
$ cp nodejs/bin/node ~/bin
$ cd ~/bin
$ ln -s ../nodejs/lib/node_modules/npm/bin/npm-cli.js npm

然后检查版本

$ node --version

获取v6.3.1

$ npm --version

获取3.10.3

去主dir

cd

.............................

然后安装快递

sccess to application dir

cd /home/admin/web/my-domain.com/public_html

创建package.json

npm init

entry point: (index.js)

安装快递

$ npm install express --save

但我得到错误

npm ERR! Linux 3.10.0-327.el7.x86_64
npm ERR! argv "/root/.nvm/v6.3.1/bin/node" "/root/.nvm/v6.3.1/bin/npm" "install" "express" "--save"
npm ERR! node v6.3.1
npm ERR! npm  v3.10.3
npm ERR! code ENOSELF

npm ERR! Refusing to install express as a dependency of itself
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR!     <https://github.com/npm/npm/issues>

npm ERR! Please include the following file with any support request:
npm ERR!     /home/admin/web/my-domain.com/public_html/nodejs/npm-debug.log

我该怎么办?

1 个答案:

答案 0 :(得分:1)

正如@jonrsharpe所指出的,您不能使用与您尝试安装的软件包相同的项目名称(package.json中的name属性)。

错误代码 ENOSELF (读作e self self)和消息

  

拒绝将express安装为自身的依赖

如果您遇到此类问题,

可以帮助您解决。