clarified tl;dr

This commit is contained in:
AJ ONeal 2015-01-20 23:33:28 -07:00
父節點 21f26603f6
當前提交 7f07bc0a25
共有 1 個文件被更改,包括 6 次插入2 次删除

查看文件

@ -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