Skip to content

Commit

Permalink
create Python 3 virtual environment to run example application
Browse files Browse the repository at this point in the history
  • Loading branch information
sv0 committed Feb 4, 2018
1 parent 62c7f7e commit 4507a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ docs:


$(VIRTUALENV): requirements.txt
[ -d $(VIRTUALENV) ] || virtualenv --no-site-packages $(VIRTUALENV)
[ -d $(VIRTUALENV) ] || virtualenv -p `which python3` --no-site-packages $(VIRTUALENV)
@$(VIRTUALENV)/bin/pip install -r requirements.txt
touch $(VIRTUALENV)

Expand Down

0 comments on commit 4507a12

Please sign in to comment.