File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -20,17 +20,26 @@ The rest of this section deals with setting up a machine to run applications wit
20
20
### Prerequisites
21
21
22
22
* ` Unzip `
23
+ * ` Curl `
23
24
24
25
---
25
26
26
- ### Get unzip
27
+ ### Get Unzip
27
28
28
29
` Unzip ` is needed to unpack runtime packages.
29
30
30
31
```
31
32
sudo apt-get install unzip
32
33
```
33
34
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
+
34
43
---
35
44
36
45
### Get Mono
@@ -53,7 +62,7 @@ sudo apt-get install mono-complete
53
62
To build libuv you should do the following:
54
63
55
64
```
56
- sudo apt-get install automake libtool curl
65
+ sudo apt-get install automake libtool
57
66
curl -sSL https://github.com/libuv/libuv/archive/v1.4.2.tar.gz | sudo tar zxfv - -C /usr/local/src
58
67
cd /usr/local/src/libuv-1.4.2
59
68
sudo sh autogen.sh
You can’t perform that action at this time.
0 commit comments