Flow was not found when attempting to start Atom/Nuclide

微笑、不失礼 提交于 2019-12-05 00:03:32

If the error itself is your concern, and you don't want to use Flow or don't even know what it does:

Nuclide -> Settings -> Flow and uncheck: Warn when Flow is not found

If, however, you want to use Flow:

Make sure you've got flow installed. Since flow will have to be matched with the version specified in .flowconfig it's a good idea to install it locally rather than globally.

For example, if your .flowconfig says:

[version]
^0.40.0

Install that very version of flow-bin locally, i.e:

npm install --save-dev flow-bin@0.40.0

Then Nuclide -> Settings -> Flow and check: Use the Flow binary included in each project's flow-bin

In case of issues, check flow issues.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!