windows 10 更新后无法识别 Mocha
Mocha not recognized after windows 10 update
安装最近的 Windows 10 更新后,我无法再 运行 mocha。回滚更新不是一种选择。这是我收到的错误:
mocha : The term 'mocha' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ mocha .\mascusToCdhTransformationServiceTest.js
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (mocha:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我尝试重新安装我的 npm 应用程序。我注意到它无法识别我的 python 安装。我通过 运行ning
解决了这个问题
npm install --global --production windows-build-tools
我也试过
的几种变体
npm install mocha
npm install mocha -g
npm uninstall
npm install
一切看似成功,但我仍然收到 Windows 无法识别摩卡咖啡的错误。我可以做些什么来让 Windows 再次变成 运行 mocha?
我必须将 ~\AppData\Roaming\npm 添加到我的环境路径变量中。我不确定为什么将其删除,但将其添加回去解决了问题。
安装最近的 Windows 10 更新后,我无法再 运行 mocha。回滚更新不是一种选择。这是我收到的错误:
mocha : The term 'mocha' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ mocha .\mascusToCdhTransformationServiceTest.js
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (mocha:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我尝试重新安装我的 npm 应用程序。我注意到它无法识别我的 python 安装。我通过 运行ning
解决了这个问题npm install --global --production windows-build-tools
我也试过
的几种变体npm install mocha
npm install mocha -g
npm uninstall
npm install
一切看似成功,但我仍然收到 Windows 无法识别摩卡咖啡的错误。我可以做些什么来让 Windows 再次变成 运行 mocha?
我必须将 ~\AppData\Roaming\npm 添加到我的环境路径变量中。我不确定为什么将其删除,但将其添加回去解决了问题。