Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我安装了 NVM 来管理 Nodejs 版本。我检查了一个需要 0.8.18 的软件,所以我通过 NVM 安装它并used 它(nvm use 0.8.18)。现在,我重新编译了所有模块,但我一直收到消息Error: Module version mismatch, refusing to load.。
use
nvm use 0.8.18
Error: Module version mismatch, refusing to load.
我错过了一些步骤吗?谢谢
尝试这个:
nvm install v0.8.18 nvm alias default v0.8.18 nvm use v0.8.18