From d1ca4f4328be75ffdc5c4336528546a1150de72c Mon Sep 17 00:00:00 2001 From: commitay Date: Mon, 2 Jul 2018 16:37:20 +1000 Subject: [PATCH] docs/Homebrew-and-Python.md: python 3.y --- docs/Homebrew-and-Python.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Homebrew-and-Python.md b/docs/Homebrew-and-Python.md index 38e2f4246..07683f4e7 100644 --- a/docs/Homebrew-and-Python.md +++ b/docs/Homebrew-and-Python.md @@ -51,12 +51,12 @@ The `site-packages` is a directory that contains Python modules (especially bind $(brew --prefix)/lib/pythonX.Y/site-packages ``` -So, for Python 3.6.x, you'll find it at `/usr/local/lib/python3.6/site-packages`. +So, for Python 3.y.z, you'll find it at `/usr/local/lib/python3.y/site-packages`. -Python 3.6 also searches for modules in: +Python 3.y also searches for modules in: -- `/Library/Python/3.6/site-packages` -- `~/Library/Python/3.6/lib/python/site-packages` +- `/Library/Python/3.y/site-packages` +- `~/Library/Python/3.y/lib/python/site-packages` Homebrew's `site-packages` directory is first created if (1) any Homebrew formula with Python bindings are installed, or (2) upon `brew install python`.