vcsh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
vcsh: command not found
or when using sudo you get the following error message
sudo: vcsh: command not found
Solutions to vcsh: command not found
How To Fix vcsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vcsh is provided by vcsh package.
vcsh is:
vcsh allows you to have several git repositories, all maintaining their working trees in $HOME without clobbering each other. That, in turn, means you can have one repository per config set (zsh, vim, ssh, etc), picking and choosing which configs you want to use on which machine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vcsh
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vcsh.
sudo apt -y install vcsh
Or if you have aptitude installed you can use the following command.
sudo aptitude install vcsh
Summary
In this tutorial we learn how to fix vcsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.