From 32cd449ece4dce4fef1b569ec308f73a8c894fc0 Mon Sep 17 00:00:00 2001 From: Siraaj Khandkar Date: Thu, 30 Apr 2020 20:57:25 -0400 Subject: [PATCH] Use pip per-user rather than per-machine --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e576ff7..d204943 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,8 @@ endif pkgs_deb_purge \ pkgs_debian \ pkgs_mac \ - pkgs_pip \ + pkgs_pip_install \ + pkgs_pip_upgrade \ pkgs_snap_classic \ pkgs_snap_strict @@ -82,8 +83,11 @@ pkgs_ubuntu_debfiles: list pkgs-ubuntu-debfiles.list # # PIP # -pkgs_pip: - sudo pip3 install $(shell ./list pkgs-pip.list) +pkgs_pip_install: + pip3 install --user $(shell ./list pkgs-pip.list) + +pkgs_pip_upgrade: + pip3 install --user --upgrade $(shell ./list pkgs-pip.list) # # Rust (cargo) -- 2.20.1