0

I have red at the help-page of easy_install that I have an ability to do "install in user site-package". What does this phase mean, "user site-package"? How does it affect functionality of the installed software?

freude
  • 3,632
  • 3
  • 32
  • 51

1 Answers1

1

User site-package refers to packages installed in ~/.local/lib[64]/python-VERSION/site-packages/

These packages are available as any other installed packages, but only to this specific user. It overrides system packages too.

Cyrille Pontvieux
  • 2,356
  • 1
  • 21
  • 29