From b5b9774136c548d48f6d2becd9e00bbe7fedf6b9 Mon Sep 17 00:00:00 2001 From: Shankar Ambady Date: Tue, 25 May 2021 15:41:29 -0400 Subject: [PATCH] Update pip.rb --- recipes/pip.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/pip.rb b/recipes/pip.rb index 9e6cad7..5d768c6 100644 --- a/recipes/pip.rb +++ b/recipes/pip.rb @@ -44,6 +44,6 @@ command <<-EOF #{node['python']['binary']} get-pip.py EOF - command 'sudo curl -s -N https://bootstrap.pypa.io/ez_setup.py -o - | sudo python3.6 && sudo python3.6 -m easy_install pip' + command 'sudo curl -s -N https://bootstrap.pypa.io/ez_setup.py -o - | sudo python3.6 && curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && sudo python3.6 get-pip.py' not_if { ::File.exists?(pip_binary) } end