We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27ac18d commit 2739424Copy full SHA for 2739424
1 file changed
section4/setup.sh
@@ -0,0 +1,22 @@
1
+#!/bin/bash
2
+
3
+# json
4
+wget https://github.com/nlohmann/json/releases/download/v3.7.3/json.hpp
5
6
+# sudo apt-get update
7
8
+# msgpack
9
+sudo apt-get install libmsgpack-dev -y
10
11
+# protobuf
12
+sudo apt-get install protobuf-compiler -y
13
+sudo apt-get install libprotobuf-dev -y
14
15
+# curl
16
+sudo apt-get remove libcurl4 -y
17
+sudo apt-get install libcurl4-openssl-dev -y
18
19
+# zmq
20
+sudo apt-get install libzmq3-dev -y
21
22
0 commit comments