diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-15 09:29:25 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-15 09:29:25 +0800 |
commit | 11be1b17a0f80c52be2869a946b9f6def87c91ac (patch) | |
tree | 22664d633c5f683392bdc7761df7edaae387412f | |
parent | 87ba0672e30dec25144d372e694900ba4a466e28 (diff) | |
download | fg21sim-11be1b17a0f80c52be2869a946b9f6def87c91ac.tar.bz2 |
Makefile: remove argument "--upgrade" from pip3
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ default: venv: ${VENV}/bin/activate ${VENV}/bin/activate: requirements.txt test -d ./${VENV} || virtualenv --python=python3 ${VENV} - ./${VENV}/bin/pip3 install --upgrade -r requirements.txt + ./${VENV}/bin/pip3 install -r requirements.txt touch ${VENV}/bin/activate # Install this package to the virtualenv |