ni8mr
ni8mr

Reputation: 1785

Sudo apt-get-repository: command not found

I am trying to add a repository in Ubuntu Mate using this command-

sudo apt-get-repository "****************(repository name)"

But i am having this output-

sudo: apt-get-repository: command not found

I have tried this-

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

and also this-

sudo apt-get install software-properties-common

But still getting same command not found output.

What is the reason behind this? And also how can i solve this?

Upvotes: 2

Views: 3670

Answers (1)

Benjamin Guttmann
Benjamin Guttmann

Reputation: 121

Perhaps you should try

sudo add-apt-repository "(repository name)"

Upvotes: 2

Related Questions