Can't install python-setuptools with yum on Ubuntu. Missing repolist

0

I can't install python-setuptool with yum on Ubuntu using the following command:

sudo yum install python-setuptools

I get this message

Setting up Install Process
No package python-setuptool available.

So I checked my repolist

sudo yum repolist

that returned

repolist: 0

Which repository should I add, Or what else could I be missing?

Thanks in advance

svassr

Posted 2012-03-05T23:59:32.420

Reputation: 1 081

Answers

2

Use aptitude in Ubuntu:

sudo apt-get install python-setuptools

pthesis

Posted 2012-03-05T23:59:32.420

Reputation: 428

Thanks @Raystafarian. What about adding repolist to yum ? I'm still interested in learning how to do it. – svassr – 2012-03-11T02:37:27.043