From 47959817fc037aa4646e7f0afd92e37b6f664e82 Mon Sep 17 00:00:00 2001 From: gryf Date: Wed, 19 Feb 2020 10:27:33 +0100 Subject: [PATCH] setuptools only in py3 now --- bootstrap_centos7.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap_centos7.sh b/bootstrap_centos7.sh index 06cb88a..8ac8718 100755 --- a/bootstrap_centos7.sh +++ b/bootstrap_centos7.sh @@ -69,8 +69,8 @@ echo 'export EDITOR="vim"' | sudo tee -a /etc/profile.d/vim.sh # rm vim-common-8.1.0875-1.1.x86_64.rpm vim-enhanced-8.1.0875-1.1.x86_64.rpm \ # vim-icons-8.1.0875-1.1.x86_64.rpm vim-minimal-8.1.0875-1.1.x86_64.rpm -# 6. install tools from pypi -sudo pip install -U pip setuptools +# 6. install tools from pypi (only py3, no more latest setuptools for py2) +sudo pip3 install -U pip setuptools installed_pkgs=$(pip list) pkgs_to_install= for pkg in pdbpp rainbow; do