From 7f07bc0a255a3a5d6e36c0d1812f5855ffeed403 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 20 Jan 2015 23:33:28 -0700 Subject: [PATCH] clarified tl;dr --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f5e993..7f89f76 100644 --- a/README.md +++ b/README.md @@ -15,17 +15,21 @@ A script to install basic development tools for io.js - the new node.js - git, i If you kinda know what you're doing already: +**io.js + dev tools** + ```bash echo "v1.0.3" > /tmp/IOJS_VER curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh ``` -Or, if you don't need any developer tools and you *just* want io.js +**io.js only** (no git, gcc, etc) ```bash -# Or if you don't need any development tools echo "v1.0.3" > /tmp/IOJS_VER curl -fsSL bit.ly/iojs-min | bash + +# Ubuntu without curl +wget -nv bit.ly/iojs-min -O - | bash ``` ## Apple OS X