WEB
WEB
找BUG的小白菜
思路很重要。
没有消息就是最好的消息。
展开
-
npm install时,提示make: g++: Command not found
npm install的时候,可能会出现提示make:g++ Command not found的错误,如下所示:node-pre-gyp WARN Using request for node-pre-gyp https downloadnode-pre-gyp WARN Tried to download(404): https://github.com/yanyiwu/nodejieba/releases/download/2.4.1/nodejieba-v2.4.1-node-v72-linux原创 2020-05-09 09:29:05 · 3181 阅读 · 0 评论 -
npm ERR! fatal: Unable to look up github.com (port 9418) (Name or service not known)
有一台Linux机器通过配置代理能够上网,但执行npm install的时候报如下错误:npm WARN deprecated chokidar@2.1.5: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.npm WARN deprecated runjs@4.4.2: This project has been renamed to 'tasksfile'. Install us原创 2020-05-09 09:13:51 · 3591 阅读 · 0 评论 -
Linux下修改npm源
执行npm install的时候,安装速度太慢,可以使用命令修改npm使用的源。查看当前使用的源root@linx:~# npm config get registry临时修改不会影响本地的配置,将xxx换成需要下载的包名称即可:root@linx:~# npm --registry https://registry.npm.taobao.org install xxx永久修改r...原创 2020-05-08 17:29:35 · 2575 阅读 · 0 评论