2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-12 00:06:36 +00:00

fix: Install wheel during ansible setup

Co-authored-by: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
This commit is contained in:
Gavin D'souza 2020-09-03 13:45:38 +05:30
parent 81d5b218f0
commit 61567be3f6

View File

@ -163,7 +163,7 @@ def install_prerequisites():
install_package('pip3', 'python3-pip')
success = run_os_command({
'python3': "sudo -H python3 -m pip install --upgrade setuptools cryptography ansible==2.8.5 pip"
'python3': "sudo -H python3 -m pip install --upgrade setuptools wheel cryptography ansible==2.8.5 pip"
})
if not (success or shutil.which('ansible')):