Re: Determining whether a package or module should be installed globally using pip

2018-04-25 Thread Chris Angelico
On Thu, Apr 26, 2018 at 2:22 AM, Paul Moore wrote: > On 25 April 2018 at 16:32, Rodrigo Acosta wrote: >> Is there a rule of thumb in deciding where to install a package? What makes >> a package, other than security vulnerabilities, better to install globally >> e.g. using sudo pip install, or b

Re: Determining whether a package or module should be installed globally using pip

2018-04-25 Thread Paul Moore
On 25 April 2018 at 16:32, Rodrigo Acosta wrote: > Is there a rule of thumb in deciding where to install a package? What makes a > package, other than security vulnerabilities, better to install globally e.g. > using sudo pip install, or by changing directory to tmp folder, or by using > virtua

Determining whether a package or module should be installed globally using pip

2018-04-25 Thread Rodrigo Acosta
Is there a rule of thumb in deciding where to install a package? What makes a package, other than security vulnerabilities, better to install globally e.g. using sudo pip install, or by changing directory to tmp folder, or by using virtualenv? Thank you python users, you're my only hope, RAR --