5

i couldn't install python-software-properties on Ubuntu my operating system is Ubuntu 19.10 i tried "sudo apt-get install python-software-properties" but it keeps showing me :

package python-software-properties is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  software-properties-common

E: Package 'python-software-properties' has no installation candidate
N0rbert
  • 99,918

1 Answers1

4

Then you should install the replacement with:

sudo apt-get update
sudo apt-get install software-properties-common

For me it seems that you are trying to obtain the add-apt-repository command which is contained in software-properties-common package.

N0rbert
  • 99,918