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 5e02477 commit dde0fe9Copy full SHA for dde0fe9
recipes/source.rb
@@ -57,3 +57,12 @@
57
}) if platform?("ubuntu") && node['platform_version'].to_f >= 12.04
58
not_if { ::File.exists?(install_path) }
59
end
60
+
61
+# Link install as the default python, to support Python 3.x
62
+# Otherwise the pip and virtualenv recipes won't work properly
63
+link node['python']['binary'] do
64
+ to install_path
65
+ not_if { ::File.exists?(node['python']['binary']) }
66
+end
67
68
0 commit comments