From 54dbbc0bfc3c9ff0fd3ba731fbaa266e6e6edcb5 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 19 Oct 2015 07:47:14 +0200 Subject: [PATCH] * Don't use cache dir in prebuild --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index b7ef6f18f..61a2dcdc3 100644 --- a/fabfile.py +++ b/fabfile.py @@ -48,7 +48,7 @@ def prebuild(build_dir='/tmp/build_spacy'): local('virtualenv ' + build_venv) with prefix('cd %s && PYTHONPATH=`pwd` && . %s/bin/activate' % (build_dir, build_venv)): local('pip install cython fabric fabtools pytest') - local('pip install -r requirements.txt') + local('pip install --no-cache-dir -r requirements.txt') local('fab clean make') local('cp -r %s/corpora/en/wordnet corpora/en/' % spacy_dir) local('cp %s/corpora/en/freqs.txt.gz corpora/en/' % spacy_dir)