我已经重新安装了我的Windows操作系统。所有文件都被保存了。但是我必须重新安装git,Node,VSCode等程序。所以现在当我试图用我的package.json中定义的脚本午餐Cypress时,我得到一个错误“No version of Cypress is installed in:...\AppData\Local\Cypress\Cache\12.10.0\Cypress
“,Please reinstall Cypress by running: cypress install
,Cypress executable not found at: ...\AppData\Local\Cypress\Cache\12.10.0\Cypress\Cypress.exe
.当然,这个路径不存在了.但是在这种情况下我应该怎么办?cypress cache clear
不工作导致cypress is not recognized as the name
,npm install cypress --save-dev
做任何事情,结果是up to date, audited 370 packages in 843ms
.在这种情况下可能的解决方案是什么?
1条答案
按热度按时间tquggr8v1#
npx cypress install --force解决了这个问题