-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python 3 setup slightly incorrect for OSX High Sierra #895
Comments
Fork the repository and ask for a Pull Request !! 😄 https://help.github.com/articles/fork-a-repo/ https://help.github.com/articles/creating-a-pull-request/ |
Please send a pull request! |
@bnorquist I was having a similar problem, but followed the instructions in the note in this section of the documentation:
When I run
and this fixed this issue I was having not being able to run Is this related to the fix you found above? |
Realized this is mentioned in #840 by @chsm in his comment. |
See #960 for a bit more discussion. |
Hi! Even if you could run
|
When using brew install python and adding
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
to your .profile python still points to the system python executable. Instead you have to add this to the .profile:export PATH="/usr/local/opt/python/libexec/bin:$PATH"
.I created a local branch on my computer with this edit but it is saying I don't have permissions to push it. I did a good amount of googling to get this set up so figured I would try to save others the time in the future :)
see first comment on this SA thread: https://stackoverflow.com/questions/5157678/python-homebrew-by-default/48101303#48101303
The text was updated successfully, but these errors were encountered: