Installing nuclide on Atom

I've been able to install it from source:

http://nuclide.io/docs/advanced-topics/building-from-source/#linux__building

Run the following commands to build Nuclide from source.

# Clone the source
$ git clone https://github.com/facebook/nuclide.git
$ cd nuclide
# Install dependencies
$ npm install
# Link the 'nuclide' package to Atom's package directory
$ apm link

Verify the installation by:

Open Atom.
Go to Atom | Preferences.
Click on Packages.
Verify nuclide as one of the packages.

This solved it for me.

$ git clone https://github.com/facebook/nuclide.git
$ cd nuclide
# Install dependencies
$ yarn --pure-lockfile
# Link the 'nuclide' package to Atom's package directory
# You could also use apm link --dev ... see Development Mode below.
$ apm link

The npm install did not install all the modules necessary. Kept giving me errors, could not find module-... This is given in the their docs. https://nuclide.io/docs/advanced-topics/building-from-source/#linux__building