danishjameel003 commited on
Commit
f5f979e
·
verified ·
1 Parent(s): f7d499b

Create setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +7 -0
setup.sh ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ apt-get update && apt-get install -y \
3
+ build-essential \
4
+ libssl-dev \
5
+ curl
6
+ curl https://sh.rustup.rs -sSf | sh -s -- -y
7
+ export PATH="$HOME/.cargo/bin:$PATH"