CSSEDGE / setup.sh
danishjameel003's picture
Create setup.sh
f5f979e verified
raw
history blame contribute delete
181 Bytes
#!/bin/bash
apt-get update && apt-get install -y \
build-essential \
libssl-dev \
curl
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"