From f7f78923360c51afe575691f67c5b2ef4c66cb1c Mon Sep 17 00:00:00 2001 From: Claudio Freire Date: Wed, 16 Jun 2021 12:15:01 -0300 Subject: [PATCH] CORE-3747: Fix pip install Installing pip with easy-install no longer works, but python already includes a builtin way to install pip with ensurepip --- tasks/setuptools.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tasks/setuptools.yml b/tasks/setuptools.yml index 074e347..380876e 100644 --- a/tasks/setuptools.yml +++ b/tasks/setuptools.yml @@ -34,8 +34,6 @@ when: (setuptools_installed | failed) or (setuptools_force_build) - name: Install pip - easy_install: - name: pip - executable: "{{python_setuptools_bin}}" + command: "{{python_bin}} -m ensurepip" # vi:ts=2:sw=2:et:ft=yaml