diff options
| author | Jack Nagel | 2014-03-31 15:12:22 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-03-31 15:12:22 -0500 |
| commit | 4bd9b7538297c2ecbcaba281a6db86e8d8f660c8 (patch) | |
| tree | aeafc11bb8026ca4db259c16c942137192dc0d1d /Library/Formula/python.rb | |
| parent | 387c84bbdf40bc5d73b75a0ab86754ee468903b9 (diff) | |
| download | homebrew-4bd9b7538297c2ecbcaba281a6db86e8d8f660c8.tar.bz2 | |
python: prune caveats a bit
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index cea220c83..142423389 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -273,22 +273,18 @@ class Python < Formula EOF end - def caveats - <<-EOS.undent - Python demo - #{HOMEBREW_PREFIX}/share/python/Extras + def caveats; <<-EOS.undent + Setuptools and Pip have been installed. To update them + pip install --upgrade setuptools + pip install --upgrade pip - Setuptools and Pip have been installed. To update them - pip install --upgrade setuptools - pip install --upgrade pip + You can install Python packages with + pip install <package> - You can install Python packages with (the outdated easy_install or) - `pip install <your_favorite_package>` + They will install into the site-package directory + #{site_packages} - They will install into the site-package directory - #{site_packages} - - See: https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python + See: https://github.com/Homebrew/homebrew/wiki/Homebrew-and-Python EOS end |
