From 511d3191189f3c9a05fa525a81e8105b8b92b96b Mon Sep 17 00:00:00 2001 From: Mort Yao Date: Fri, 25 Dec 2015 16:44:06 +0100 Subject: [PATCH] [Makefile] Fix "combine user with prefix ... error" for Homebrew Python (close #831) - https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Homebrew-and-Python.md#note-on-pip-install---user - http://bugs.python.org/issue22269 Workaround: - http://stackoverflow.com/a/4495175 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fee4de86..c0f9cf0e 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ bdist_wheel: $(SETUP) bdist_wheel install: - $(SETUP) install --user + $(SETUP) install --user --prefix= release: zenity --question