Skip to content

Instantly share code, notes, and snippets.

View Pal-Sandeep's full-sized avatar
⛰️
Contributing

Sandeep Pal Pal-Sandeep

⛰️
Contributing
View GitHub Profile
@Pal-Sandeep
Pal-Sandeep / install.sh
Created January 18, 2023 16:35 — forked from kodekracker/install.sh
A shell script to install all required applications and dependencies required to setup working environment after fresh install ubuntu .
#!/usr/bin/env bash
# System wide Constants
# Ubuntu Code Name Ex:- trusty for Ubuntu 14.04
CODE_NAME=$(lsb_release -cs)
## Install basic libraries required for ubuntu environment
sudo apt-get install libcurl4-openssl-dev libssl-dev -y
sudo apt-get install zsh -y
sudo apt-get install python-software-properties -y