文章分类 - node
摘要:1 指定版本升级:(亦可升级到最新版,升级版本过低或导致npm无法使用) npm -g install npm@5.6.0【@任意版本】
阅读全文
摘要:1 问题起因:在node.js与npm已安装的情况下,重新安装了旧版npm3.0。导致执行npm 任何命令都报错:“Cannot find module 'internal/util/types'”(有点崩溃...) 2 分析:通常情况下,node.js安装时,npm也会同时安装。若node.js版
阅读全文
python脚本常见问题之:Python脚本运行出现语法错误:IndentationError: unindent does not match any outer indentation level
摘要:问题1 Python脚本运行出现语法错误:IndentationError: unindent does not match any outer indentation level 问题原因:根据IDE提示,原因在于报错代码行的前端缩进有误。虽然代码表面看起来是对准的,实际常因为Enter换行,Ta
阅读全文