Abdullah Baraka
Abdullah Baraka

Reputation: 73

How do I install dataset on python not using pip or easy_install?

I'm trying to install data set on Ubuntu and when I use

pip install dataset

it gives me a long error message, and from what I could debug from it is that permission to the directory is denied. When I try

easy_install dataset

it says error: can't create or remove files in install directory because permission is denied Maybe my account doesn't have write access to this directory?

Upvotes: 1

Views: 505

Answers (1)

AlanK
AlanK

Reputation: 9853

If you're receiving the error can't create or remove in install directory because permission is denied then you need to run your commands with sudo privileges

Try:

sudo pip install dataset

or

sudo easy_install dataset

Upvotes: 1

Related Questions