A complete log of this run can be found in & no such file or directory

今天来记录一下踩坑日记:

最后解决是重新配置了环境变量;下面是详细步骤:

1,卸载你的nodejs,再就是安装你的nodejs

2,输入 npm root -g  查看当前你的依赖下载路径

如果是   C:\Users\用户名\AppData\Roaming\npm

那么执行下面两行命令

A complete log of this run can be found in & no such file or directory

npm config set prefix "D:\nodejs\node_global"
npm config set cache "D:\nodejs\node_cache"

D:\nodejs\node_global  盘符\nodejs是我安装Node JS的目录  node_global是今后下载依赖包的放置目录   node_cache是防止缓存的(具体不太清楚)

具体环境变量配置

1   NODE_PAYH

A complete log of this run can be found in & no such file or directory

 2  自动生成的不用管  在  系统变量-->path-->D:/nodejs/

3   配置一个  D:\nodejs\node_global  切记是在用户变量下

A complete log of this run can be found in & no such file or directory

 至此环境配置好了,跑前后端项目请看我的上一篇博客。

上一篇:docker之镜像下载


下一篇:Netty之责任链模式的过滤链实现源码分析(二)