We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef6a0e0 commit e3d58f0Copy full SHA for e3d58f0
recipes/pip.rb
@@ -18,7 +18,9 @@
18
# limitations under the License.
19
#
20
21
-if platform_family?("rhel") and node['python']['install_method'] == 'package'
+if node['python']['install_method'] == 'source'
22
+ pip_binary = "#{node['python']['prefix_dir']}/bin/pip"
23
+elsif platform_family?("rhel")
24
pip_binary = "/usr/bin/pip"
25
elsif platform_family?("smartos")
26
pip_binary = "/opt/local/bin/pip"
0 commit comments