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 | |
# updating repositories | |
sudo apt update | |
# installing build tools and python | |
sudo apt install build-essential python | |
# installing nodejs | |
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - |