2021年02月20日 15:01:53

npm install在Debian上出现以下错误

image

目前解决方案是用yarn install替代
yarn安装文档:https://yarn.bootcss.com/docs/install/#debian-stable

2021年02月20日 14:48:32

mac下执行npm install出现 gyp: No Xcode or CLT version detected!

解决方案见:https://stackoverflow.com/questions/60573595/npm-install-fails-on-node-gyp-rebuild-with-gyp-no-xcode-or-clt-version-detec

执行如下命令即可:

xcode-select --print-path
sudo rm -rf $(xcode-select --print-path)
xcode-select --install

2021年02月20日 14:46:16

如果用Maven下载依赖时,发现maven plugin下载失败,显示类似“在仓库中无法找到该依赖”的错误,则检查有没有开抓包工具,把抓包软件关闭即可

2021年02月20日 14:44:01

从今天起记录一些平常开发中遇到的小坑