Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MacOs Monterey Python3 as default

I am currently trying to change my default Python version to Python3. This proves to be harder than expected. I have already tried the following things:

  1. I have tried to change the alias by doing alias python python3 but this seems to just change it for the running Terminal session
  2. I have installed Python3 again with Homebrew and tried to change the directory within the zshellruncommand by defining it myself and editing it in vim to be honest I don't really understand the process and just followed along with a tutorial but it didn't work.
  3. I tried the command ln -s -f /opt/homebrew/bin/python3 /usr/bin/python to change the directories but it returned ln: /usr/bin/python: Operation not permitted

to deal with this problem I have already given the Terminal full access to the local harddrive but it is still not working properly

Hoping for some advise, thanks in advance

like image 629
Jake Avatar asked Aug 09 '26 12:08

Jake


2 Answers

First make sure the installed version is linked:

brew link python

then on your .bash_profile or .bashrc (.zshrc if you're using zsh) write this:

export PATH="/usr/local/opt/[email protected]/libexec/bin:$PATH"

change X and Y to your python version

like image 88
Pedro Maia Avatar answered Aug 12 '26 03:08

Pedro Maia


I think it's easier to just change your user shell environment instead of changing the system level environment.

vi ~/.bash

Then type

alias python=python3

Save your file by pressing Esc -> type :wq

Update your shell environment

source ~/.bash

Check your Python version.

python -V

Final result

Python 3.9.10

This works in my past few versions MacOS.

like image 31
hatted Avatar answered Aug 12 '26 04:08

hatted



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!