remove —no-cache-dir arg

caches are good! disabling cache should ~only be used when building docker images
This commit is contained in:
Min RK
2018-07-13 15:11:16 -05:00
parent 755a26ebfa
commit 03d0884bec

View File

@@ -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([