aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python.rb
diff options
context:
space:
mode:
authorJack Nagel2014-03-31 15:12:22 -0500
committerJack Nagel2014-03-31 15:12:22 -0500
commit4bd9b7538297c2ecbcaba281a6db86e8d8f660c8 (patch)
treeaeafc11bb8026ca4db259c16c942137192dc0d1d /Library/Formula/python.rb
parent387c84bbdf40bc5d73b75a0ab86754ee468903b9 (diff)
downloadhomebrew-4bd9b7538297c2ecbcaba281a6db86e8d8f660c8.tar.bz2
python: prune caveats a bit
Diffstat (limited to 'Library/Formula/python.rb')
-rw-r--r--Library/Formula/python.rb22
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