We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796668a commit f0fea19Copy full SHA for f0fea19
1 file changed
README.md
@@ -64,10 +64,18 @@ apt-get install postgresql libpq-dev
64
65
### Python
66
67
-Python 3.5 is a minimum requirement and can be installed via `homebrew`:
+Python 3.5 is a minimum requirement and can be installed via `pyenv`:
68
69
```
70
-brew install python3
+brew install pyenv
71
+```
72
+
73
+- After installing, ensure [`eval "$(pyenv init -)"` is added to your shell startup.](https://github.com/yyuu/pyenv/#homebrew-on-mac-os-x)
74
+- Install and use Python 3.5:
75
76
+pyenv install 3.5.0
77
+# if you have build issues, ensure Xcode CLI tools are installed:https://github.com/yyuu/pyenv/issues/451#issuecomment-151336786
78
+python local 3.5.0 # use Python 3.5.0 in your current directory
79
80
81
Or via your package manager. For example, on Debian Jessie:
0 commit comments