clarified tl;dr
This commit is contained in:
parent
21f26603f6
commit
7f07bc0a25
|
@ -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:
|
If you kinda know what you're doing already:
|
||||||
|
|
||||||
|
**io.js + dev tools**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
echo "v1.0.3" > /tmp/IOJS_VER
|
echo "v1.0.3" > /tmp/IOJS_VER
|
||||||
curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
|
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
|
```bash
|
||||||
# Or if you don't need any development tools
|
|
||||||
echo "v1.0.3" > /tmp/IOJS_VER
|
echo "v1.0.3" > /tmp/IOJS_VER
|
||||||
curl -fsSL bit.ly/iojs-min | bash
|
curl -fsSL bit.ly/iojs-min | bash
|
||||||
|
|
||||||
|
# Ubuntu without curl
|
||||||
|
wget -nv bit.ly/iojs-min -O - | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
## Apple OS X
|
## Apple OS X
|
||||||
|
|
Loading…
Reference in New Issue