1
0
mirror of https://github.com/gryf/vmstrap.git synced 2026-01-26 17:45:51 +01:00

setuptools only in py3 now

This commit is contained in:
2020-02-19 10:27:33 +01:00
parent 33116123f3
commit 47959817fc

View File

@@ -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