简体   繁体   中英

OSX Mountain Lion Cloud 9 install instructions

How can I install cloud9 locally on osx mountain lion?

following the instructions at https://github.com/ajaxorg/cloud9/ did not work.

You should check your nodejs version node --version . Use a version lower than 0.8.x

If you are already using 0.10.x and don't intend to go backwards, then you should try nvm:

Then follow cloud9 instructions

If this doesn't work try updating npm by executing npm update -g

NOTE: if you get EACCES errors then you should probably try sudo npm update -g

Ok, finally figured it out:

Using

node --version = v0.10.5

npm --version = 1.2.18

  1. npm install cloud9
  2. edit node_modules/cloud9/bin/cloud9.js

    goto line 42

    where: require("cloud9").main(options);

    change to: require("../server/cloud9").main(options);

  3. ./node_modules/cloud9/bin/cloud9.sh

Haven't found any errors yet, but only just started using it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM