Skip to content

Instantly share code, notes, and snippets.

@hasanisaeed
Last active April 8, 2023 07:04
Show Gist options
  • Save hasanisaeed/14e4aaba5604c8649298a03e08286a83 to your computer and use it in GitHub Desktop.
Save hasanisaeed/14e4aaba5604c8649298a03e08286a83 to your computer and use it in GitHub Desktop.
Re-create my OS
sudo apt update
echo ">> Installing vim editor..."
sudo apt install vim -y
echo ">> Installing python3.11..."
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update 
sudo apt install python3.11 -y
sudo apt install python3.11-venv -y
echo ">> Installing VSCode..."
sudo snap install --classic code
echo ">> Installing Video Codec..."
sudo apt install ubuntu-restricted-extras
echo ">> Installing PyCharm community..."
sudo snap install pycharm-community --classic
echo ">> Installing npm..."
sudo apt install npm -y
sudo npm install -g n
echo ">> Installing node v16..."
sudo n 16.18.0
echo ">> Installing yarn..."
sudo npm install -g yarn
echo ">> Config git..."
git config --global user.name "Saeed"
git config --global user.email "hassanisaeed19@yahoo.com"
echo ">> Installing tmux..."
echo "TERM=xterm" >> ~/.bashrc && source ~/.bashrc
sudo apt install tmux --classic
echo ">> Installing Docker..."
sudo snap install docker
echo ">> Installing Telegram..."
sudo snap install telegram-desktop
echo ">> Installing Postman..."
sudo snap install postman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment