I want to install:
add-apt-repository ppa:ricotz/testin
It is showing:
The program add-apt-repository is currently not installed.
You can install it by typing:
sudo apt-get install python-software-properties
What should I do now?
I want to install:
add-apt-repository ppa:ricotz/testin
It is showing:
The program add-apt-repository is currently not installed.
You can install it by typing:
sudo apt-get install python-software-properties
What should I do now?
Try these:
sudo apt-get install software-properties-common
and/or
sudo apt-get install python3-software-properties
and/or
sudo apt-get install python-software-properties
E: Package 'python3-software-properties' has no installation candidate
– Akankha Ahmed Jul 09 '14 at 06:27apt-get install software-properties-common
seems to be enough in Ubuntu 14.04.
– qris
May 27 '15 at 20:51
software-properties-common
and python-software-properties
were required
– Thamme Gowda
Nov 24 '15 at 01:30
add-apt-repository
is provided by software-properties-common
see filelist
– TarranJones
Nov 03 '16 at 15:49
ubuntu:latest
docker image gives E: Unable to locate package software-properties-common
– Martin Thoma
May 03 '18 at 11:07
Unable to locate package
, make sure to apt-get update
first.
– David Birks
Jul 30 '18 at 20:15
ubuntu:latest
works after apt update
and installing software-properties-common
– Madacol
Apr 19 '21 at 21:58
add-apt-repository
is provided bysoftware-properties-common
see filelist – TarranJones Nov 03 '16 at 15:46