Reputation: 73
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
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