From 33b2a29e1460ef307254dfab9a849dd972e5a5c8 Mon Sep 17 00:00:00 2001 From: samueljohn Date: Tue, 2 Oct 2012 15:00:09 +0200 Subject: [PATCH] Replace mentions of easy_install by pip Use this chance to correct minor typos. Closes Homebrew/homebrew#15242. Signed-off-by: Adam Vandenberg --- Library/Homebrew/blacklist.rb | 4 +--- Library/Homebrew/dependencies.rb | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb index babca2b813..10e9196f6b 100644 --- a/Library/Homebrew/blacklist.rb +++ b/Library/Homebrew/blacklist.rb @@ -29,9 +29,7 @@ def blacklisted? name We recommend using a MacTeX distribution: http://www.tug.org/mactex/ EOS when 'pip' then <<-EOS.undent - Install pip with easy_install: - - easy_install pip + pip is installed by `brew install python` EOS when 'macruby' then <<-EOS.undent MacRuby works better when you install their package: diff --git a/Library/Homebrew/dependencies.rb b/Library/Homebrew/dependencies.rb index 5fe6a95532..5d5b5ab0d9 100644 --- a/Library/Homebrew/dependencies.rb +++ b/Library/Homebrew/dependencies.rb @@ -185,7 +185,7 @@ class LanguageModuleDependency < Requirement when :lua then "luarocks install" when :node then "npm install" when :perl then "cpan -i" - when :python then "easy_install" + when :python then "pip install" when :rbx then "rbx gem install" when :ruby then "gem install" end