2
0
mirror of https://github.com/frappe/bench.git synced 2024-11-13 16:56:33 +00:00

Merge pull request #1065 from gavindsouza/install-wheel-and-setuptools

fix: Install wheel during ansible setup
This commit is contained in:
gavin 2020-09-04 12:02:50 +05:30 committed by GitHub
commit 0463e61157
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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')):