gitpuller command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gitpuller: command not found
or when using sudo you get the following error message
sudo: gitpuller: command not found
Solutions to gitpuller: command not found
How To Fix gitpuller: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gitpuller is provided by python3-nbgitpuller package.
python3-nbgitpuller is:
nbgitpuller lets you distribute content in a git repository to your students by having them click a simple link. Automatic merging ensures that your students are never exposed to git directly. It is primarily used with a JupyterHub, but can also work on students' local computers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install python3-nbgitpuller
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install python3-nbgitpuller.
sudo apt -y install python3-nbgitpuller
Or if you have aptitude installed you can use the following command.
sudo aptitude install python3-nbgitpuller
Summary
In this tutorial we learn how to fix gitpuller command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.