pick command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pick: command not found
or when using sudo you get the following error message
sudo: pick: command not found
Solutions to pick: command not found
How To Fix pick: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pick is provided by pick package.
pick is:
The pick utility allows users to choose one option from a set of choices using an interface with fuzzy search functionality. pick reads a list of choices on stdin and outputs the selected choice on stdout. Therefore it is easily used both in pipelines and subshells.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pick
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pick.
sudo apt -y install pick
Or if you have aptitude installed you can use the following command.
sudo aptitude install pick
Summary
In this tutorial we learn how to fix pick command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.