Let's install the "Git" software on Ubuntu OS.
After running the terminal, just type in it apt-get install git
Apt is the command we use in Ubuntu's package manager and the install option will let us install something. We're getting an error that says permission denied.
We should use to install the other command.
sudo apt install git
Sudo which stands for super user do. We're authorized to install software.
No comments:
Post a Comment
Your comment will taken into consideration.