Skip to content

Commit 7a0c476

Browse files
committed
Added 'Get Curl' to prerequisites section
1 parent 5288a44 commit 7a0c476

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

GettingStartedDeb.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,26 @@ The rest of this section deals with setting up a machine to run applications wit
2020
### Prerequisites
2121

2222
* `Unzip`
23+
* `Curl`
2324

2425
---
2526

26-
### Get unzip
27+
### Get Unzip
2728

2829
`Unzip` is needed to unpack runtime packages.
2930

3031
```
3132
sudo apt-get install unzip
3233
```
3334

35+
### Get Curl
36+
37+
`Curl` is a command line tool for transferring data specified with URL syntax.
38+
39+
```
40+
sudo apt-get install curl
41+
```
42+
3443
---
3544

3645
### Get Mono
@@ -53,7 +62,7 @@ sudo apt-get install mono-complete
5362
To build libuv you should do the following:
5463

5564
```
56-
sudo apt-get install automake libtool curl
65+
sudo apt-get install automake libtool
5766
curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src
5867
cd /usr/local/src/libuv-1.4.2
5968
sudo sh autogen.sh

0 commit comments

Comments
 (0)