Skip to content

Commit 2739424

Browse files
committed
setup.sh
1 parent 27ac18d commit 2739424

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

section4/setup.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)