From 61dcaa2927974cf9c060662e9282adaa181de2a1 Mon Sep 17 00:00:00 2001 From: rakitabojanrakita <51711342+rakitabojanrakita@users.noreply.github.com> Date: Tue, 11 Jun 2019 16:35:05 +0200 Subject: [PATCH] Update solve.py --- freestyle/solve.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freestyle/solve.py b/freestyle/solve.py index f5c7921..1acb907 100644 --- a/freestyle/solve.py +++ b/freestyle/solve.py @@ -2,8 +2,8 @@ import sys def install(package): - subprocess.call([sys.executable, "-m", "pip", "install", package]) + subprocess.call([sys.executable, "-m", "pip", "install", package, "--user"]) # Example if __name__ == '__main__': - install('argh') \ No newline at end of file + install('argh')