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 | |
| parent | 387c84bbdf40bc5d73b75a0ab86754ee468903b9 (diff) | |
| download | homebrew-4bd9b7538297c2ecbcaba281a6db86e8d8f660c8.tar.bz2 | |
python: prune caveats a bit
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/python.rb | 22 | ||||
| -rw-r--r-- | Library/Formula/python3.rb | 2 |
2 files changed, 10 insertions, 14 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 diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb index 38b5c3f91..cf8c7a66d 100644 --- a/Library/Formula/python3.rb +++ b/Library/Formula/python3.rb @@ -260,7 +260,7 @@ class Python3 < Formula pip3 install --upgrade pip You can install Python packages with - `pip3 install <your_favorite_package>` + pip3 install <package> They will install into the site-package directory #{site_packages} |
