Link to home
Start Free TrialLog in
Avatar of chalie001
chalie001

asked on

how to install github in linux

hi i what to install github in linux ubuntu how can i do that
Avatar of rindi
rindi
Flag of Switzerland image

Most Linux Distro's include this in their Repositories. How you install Software from the Repo's depends on the Distro.

On Debian based Distro's (Debian, Ubuntu etc.), you can open a terminal and enter:

sudo apt update
sudo apt install git-hub

If you are using a GUI in your Distro, there is probably also a package Manager installed, like Synaptic, and then you can open that & search for git-hub, select it & install it...
ASKER CERTIFIED SOLUTION
Avatar of David Favor
David Favor
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
GitHub is a git repository hosting service provider. You can't install it on your computer.

git is open-source version control software. You can install git on Ubuntu computer with the command

apt install git git-gui

Open in new window


Once git is installed, you can use it for working with any Git Repository including GitHub. There are other Git Hosting providers like Bitbucket, Gitlab, etc...