DEV Community

Discussion on: How to set Python3 as a default python version on MacOS?

Collapse
 
malwarebo profile image
Irfan

Hey try this:

sudo chown -R $(whoami) /usr/local/python

then

ln -s -f /usr/local/bin/python3.8.2 /usr/local/bin/python

Thread Thread
 
bubasar profile image
Bubasar

That is worked Irfan. Thanks for your help .