# File src/ruby_supportlib/phusion_passenger/platform_info/depcheck.rb, line 355
        def print_installation_instructions_for_missing_dependencies
          @missing_dependencies.each do |dep|
            puts " * To install <yellow>#{dep.name}</yellow>:"
            puts "   #{dep.install_instructions}"
            if dep.install_comments
              puts "   #{dep.install_comments}"
            end
            puts
          end
        end