赞
踩
1 调用报错:
Uncaught Error: Cannot find module ‘express’
全局安装后,调用失败,后来发现忘记将环境变量配置了,
安装位置为自己设定的,在环境变量中新建NODE_PATH,然后将(安装地址)\node_global\node_modules 赋值给新建变量,调用成功。
如果没有设定安装位置,那么可以通过npm config list看到安装位置,安装位置为prefix的值+node_modules
`; cli configs
metrics-registry = “https://registry.npm.taobao.org/”
scope = “”
user-agent = “npm/6.14.8 node/v14.15.1 win32 x64”
; userconfig C:\Users\Administrator.npmrc
cache = “E:\worker\node_web\nodejs\node_cache”
prefix = “E:\worker\node_web\nodejs\node_global”
registry = “https://registry.npm.taobao.org/”
; builtin config undefined
; node bin location = E:\worker\node_web\nodejs\node.exe
; cwd = C:\Users\Administrator
; HOME = C:\Users\Administrator
; “npm config ls -l” to show all defaults.`
2 vue安装报错:‘vue‘ 不是内部或外部命令,也不是可运行的程序 或批处理文件的方法
同样的原因,未将环境配置,将prefix的地址直接加入到系统环境变量中,
path = E:\worker\node_web\nodejs\node_global
然后成功。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。