Created
December 28, 2024 18:21
-
-
Save sounishnath003/5644a3aff4060bc6cda9353dccbcce0b to your computer and use it in GitHub Desktop.
To setup sounish dev setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt update -y | |
sudo apt upgrade -y | |
curl -sL https://deb.nodesource.com/setup_22.x -o /tmp/nodesource_setup.sh | |
sudo bash /tmp/nodesource_setup.sh | |
sudo apt install nodejs | |
wget https://go.dev/dl/go1.23.4.linux-amd64.tar.gz | |
tar -C . -xvf go1.23.4.linux-amd64.tar.gz | |
mv go /usr/local/bin/ | |
sudo apt install build-essential python3-dev python3-venv openjdk-17-jdk-headless | |
sudo apt full-upgrade | |
sudo apt remove |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment