• Please make sure to complete your profile by filling in any details pertaining to your company, name, photo, socials and contact information for any updates.
  • Need a hand with one of our platforms? post it under the support forum!
  • Reach out to us by emailing devsupport@redtorrentmedia.app if you don't see a response in 24/48 hours. - Please forward your thread!

How to update Python on Mac os?

Timberr

New member
MacOS already ships with python pre-installed.
If you want newer versions, I suggest to use brew - you can then just run brew install python3.
A more click-friendly alternative is the anaconda distribution - personally, I dislike it as it tends to muddle with things it should not muddle with.
Installation from source is also possible, but if you have to ask how, this is not a solution I suggest.
 

Lilykevin95

New member
HI......!
$ python --version Python 2.7.15
$ xcode-select --install
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew doctor Your system is ready to brew
$ brew install python3
$ python3 --version Python 3.7.0.
 

Marierosas

New member
Run the downloaded file and install Python 3.X on Mac.
Python three.6.X requires about 100MB of to be had disk area. The installation process may be very fast;
When Python three is hooked up, you may see the Python3 folder in /Applications to your Mac.
 

HardMichael

Member
The default Python on OS X should not be corrupted because it uses it. If the default is 2.6.1, you must have Snow Leopard. The experts at salvagedata showed that you first need to install Homebrew (the missing package manager for macOS); if you don't have it: type this in your terminal
/usr/bin/ruby -e ""$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install).""Now you can upgrade your Python to Python 3 with this command brew install python3 && cp /usr/local/bin/python3 /usr/local/bin/python .Python 2 and python 3 can coexist to open python 3, type python3 instead of python. This is the easiest and best way.
 
Top