C9 IDE is installed locally from GitHub

Do you have any “instructions”?

+8
cloud9-ide
source share
1 answer

Installing cloud9 sdk is a lot easier. Make sure you have the nodes and git installed.

Then run

git clone https://github.com/c9/core sdk cd sdk ./scripts/install-sdk.sh 

To start cloud9 use

 node server.js -p 8181 -l 0.0.0.0 -a : 

This also works in windows when you start from cygwin or msys (which comes with the default installation of git). If you do not have python2.7 and the visual studio is installed, npm will not be able to build pty.js, and the terminals will not work, but everything else will work fine. The windows also have a bin/launch.bat script to launch cloud9 from explorer gui

+14
source share

All Articles