1

I can't install 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 return

repolist: 0

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

Thanks in advance

svassr
  • 113

1 Answers1

3

Ubuntu generally doesn't use yum, unless yo've taken specific steps to enable it.

Instead, use apt:

apt-get install python-setuptools

I highly recommend reading through the Ubuntu package management pages: https://help.ubuntu.com/11.04/serverguide/C/package-management.html (they'll probably say to use some newer version of the apt command, which I'm guessing someone here on SF will educate me about in a comment or another answer).

Jed Daniels
  • 7,452
  • 2
  • 37
  • 43