From 34ff6116a674d08f1374f78e1cffaee24e94d3b0 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Wed, 1 May 2019 20:36:41 +0900 Subject: [PATCH] fix: [installer] Avoid doing funky **sudo pip install** moves, it breaks python on package managed python installs, if ever, use the **--user** flag. --- installing_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installing_deps.sh b/installing_deps.sh index fdadd9e7..0becb8d6 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -27,7 +27,7 @@ sudo apt-get install libev-dev libgmp-dev -y sudo apt-get install graphviz -y # install nosetests -sudo pip3 install nose +sudo apt-get install python3-nose # ssdeep sudo apt-get install libfuzzy-dev -y