macOS: Can brew-installed py find and use brew-installed python 3.10 #161
-
Is there a way to get %
%
|
Beta Was this translation helpful? Give feedback.
Answered by
brettcannon
Nov 4, 2021
Replies: 1 comment 1 reply
-
If you do |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cclauss
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you do
brew link --overwrite [email protected]
then it will work. The issue is that by having[email protected]
installed, Homebrew won't symlink into/usr/local/bin
because it would overwritepython3
. By forcing the linking you resetpython3
, but more importantly for the Python Launcher you getpython3.10
into/usr/local/bin
.