背景
我突然发现了一个流星错误:
~/.meteor/packages/meteor-tool/.1.4.0-1.1b1o7uq++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/lib/node_modules/fibers/bin/darwin-x64-v8-4.5/fibers.node is missing. Try reinstalling node-fibers?
经过广泛的研究,我得出结论,这个问题没有一个已知的、直接的解决方案。
可能的解决方案
我创造了一个新的流星项目,这是可行的。这是因为它位于Meteor的最新版本,fibers.node正确地安装在1.6 (最新版本)目录中。最好的解决方案是删除我的活动项目目录,用相同的名称重新创建它(在Meteor的最新版本),然后检索所有的包、设置和文件(HTML、JS、CSS)。
问题
做这件事的最佳方法是:
发布于 2017-12-02 22:18:22
我能够解决错误:
~/.meteor/packages/meteor-tool/.1.4.0-1.1b1o7uq++os.osx.x86_64+web.browser+web.cordova/mt-os.osx.x86_64/dev_bundle/lib/node_modules/fibers/bin/darwin-x64-v8-4.5/fibers.node is missing. Try reinstalling node-fibers?
因此,不需要继续重新安装项目路径。
在这个线程上,我遵循了公认的答案中的步骤:
How can I completely uninstall and then reinstall Meteor.js?
具体地说:
mv .meteor .meteor.baksudo rm /usr/local/bin/meteorsudo chown -R $(whoami) ~/.npm/curl https://install.meteor.com/ | shmeteor --version -> --这将为项目所在的版本提取所需的包。https://stackoverflow.com/questions/47609679
复制相似问题