From 03d0884becbcdbf75579ef2f7f503f139bf1563d Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 13 Jul 2018 15:11:16 -0500 Subject: [PATCH] =?UTF-8?q?remove=20=E2=80=94no-cache-dir=20arg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit caches are good! disabling cache should ~only be used when building docker images --- bootstrap/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py index d9dbb3a..7334fec 100644 --- a/bootstrap/bootstrap.py +++ b/bootstrap/bootstrap.py @@ -87,7 +87,7 @@ def pip_install(prefix, packages, editable=False): Set editable=True to add '--editable' to the pip install commandline. Very useful when doing active development """ - flags = ['--no-cache-dir', '--upgrade'] + flags = ['--upgrade'] if editable: flags.append('--editable') subprocess.check_output([