We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17640a3 commit 32520cbCopy full SHA for 32520cb
1 file changed
Makefile
@@ -17,7 +17,7 @@ usage: ## Show this help
17
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
18
19
install: ## Install dependencies in local virtualenv folder
20
- (test `which virtualenv` || $(PIP_CMD) install --user virtualenv) && \
+ (test `which virtualenv` || $(PIP_CMD) install virtualenv) && \
21
(test -e $(VENV_DIR) || virtualenv $(VENV_OPTS) $(VENV_DIR)) && \
22
($(VENV_RUN) && $(PIP_CMD) install --upgrade pip) && \
23
(test ! -e requirements.txt || ($(VENV_RUN); $(PIP_CMD) install -r requirements.txt))
0 commit comments