From d1a7a90a1401f4006d45af469daab402cbaa1d34 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 22 Apr 2016 03:02:29 +0200 Subject: [PATCH] Makefile: use pip install --user, also uninstall --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c14b80f1..b03e2f26 100644 --- a/Makefile +++ b/Makefile @@ -25,9 +25,10 @@ build_python: cd python && ./setup.py build test_python: - cd python && pip install . + cd python && pip install --user -v . [ -f build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.4.dylib ~/lib ) || true LD_LIBRARY_PATH=$(PWD)/build/src python/tests/run_all_tests + cd python && pip uninstall -y -v aubio clean_python: cd python && ./setup.py clean -- 2.11.0