踩坑记

一、前言

在工作中或者新的框架等都会踩坑,有时同一个还不只一次,感觉有必要记录一下。

这里分类记录下。

二、node 包管理

现在前端框架大行其道。在使用框架的同时需要管理各种包,这里面经常会在 npm install 时出现各种问题。在这里记录下。

1、EPERM: operation not permitted

具体信息:Error: EPERM: operation not permitted, unlink......

解决办法:1、删除 node_modules 文件;2、清理缓存(npm cache clean --force);3、重新 install

2、check python

具体信息:check python checking for Python executable "python2" in the PATH

解决办法:(缺少python2.7支持 可快速使用以下语句完成安装)

npm install --global --production windows-build-tools

相关推荐