20

The directory '/home/bijay/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.

But software get installed. I just want to know what the heck above error means.

For example:-

 When I tried to install pandas, it goes like this..

Zanna
  • 70,465

2 Answers2

15

When you run sudo your environment is passed along while the effective user switches to root. Your environment includes that your ~/ or home directory (the value of the environment variable HOME) is /home/bijay.

pip looks for an http cache before downloading packages. Probably for a combination of security, sanity and privacy reasons pip disables the cache so as not to write to a cache directory not owned by the current user. It's just telling you that it did that.

As it hints, using sudo -H would set the HOME environment variable before executing the command passed to sudo, using root's home directory /root as $HOME instead of your user's. The cache could then be written in /root/.cache/pip/http with no errors.

As a sidenote, you probably shouldn't be running pip as root anyway.

Zanna
  • 70,465
jdwolf
  • 1,076
  • 1
    Thanks. It pretty much explains. But why running pip as root is not good. Isn't pip just a package manager to install python software/libraries ? – Bijay uprety Jan 03 '18 at 06:30
  • @Bijayuprety see https://askubuntu.com/questions/802544/is-sudo-pip-install-still-a-broken-practice/802594#802594 – Zanna Jan 03 '18 at 06:39
  • Generally speaking if you want system-wide python packages use your distributions packages instead. – jdwolf Jan 03 '18 at 06:47
  • 2
    If you want to install without using root or sudo, simply use the --no-cache-dir argument. The only downside is that it may take a little longer and might use slightly more of your network bandwidth. – cowlinator Jan 18 '20 at 03:05
  • @cowlinator Or you could just ignore the warning because its already disabling the cache. However the warning also tells you what you need to do. If pip didn't need root then it'd use the users cache without disabling it. – jdwolf Jan 19 '20 at 00:54
-4

upgrade pip

apt pip install --upgrade pip