Fix fab install command

This commit is contained in:
Matthew Honnibal 2018-02-28 01:56:14 +01:00
parent 67cd2d42b0
commit eaef36e4a5
1 changed files with 1 additions and 1 deletions

2
fabfile.py vendored
View File

@ -54,9 +54,9 @@ def install():
def make(): def make():
with lcd(path.dirname(__file__)): with lcd(path.dirname(__file__)):
with virtualenv(VENV_DIR) as venv_local: with virtualenv(VENV_DIR) as venv_local:
venv_local('pip install wheel')
venv_local('pip install cython') venv_local('pip install cython')
venv_local('pip install murmurhash') venv_local('pip install murmurhash')
venv_local('pip install wheel')
venv_local('pip install -r requirements.txt') venv_local('pip install -r requirements.txt')
venv_local('python setup.py build_ext --inplace') venv_local('python setup.py build_ext --inplace')