我使用nvm下载节点v0.4.10,并安装了npm以与该版本的节点一起使用。我正在尝试使用安装Expressnpm install express -g我得到一个错误,表示需要节点版本> = 0.5.0。好吧,这很奇怪,因为我遵循此处使用节点v0.4.10 的node + express + mongodb教程的说明,因此我假设express可用于节点v0.4.10。如果我的假设是正确的,我如何告诉npm获取适用于我的设置的版本?
3 回答
哈士奇WWW
TA贡献1799条经验 获得超6个赞
这很容易。只需编写此代码,例如:
npm install -g npm@4.6.1
要么:
npm install -g npm@latest // For the last stable version
npm install -g npm@next // For the most recent release
慕田峪4524236
TA贡献1875条经验 获得超5个赞
首先删除旧版本,然后运行字面上以下几点:
npm install express@3.X
并且稳定或最近
npm install -g npm@latest // For the last stable version
npm install -g npm@next // For the most recent release
- 3 回答
- 0 关注
- 591 浏览
添加回答
举报
0/150
提交
取消