user16675748
user16675748

Reputation:

how to install python 3.9.6 using homebrew on Mac m1

Im new to programming and stuff and was looking to install python 3.9.6 using home-brew. To do that would I just have to type in brew install [email protected] into the terminal, or is there some other way? Thanks!

Upvotes: 2

Views: 6469

Answers (1)

Simba
Simba

Reputation: 27568

You can't ensure a specific version 3.9.6 with brew package [email protected]. Homebrew is a package manage designed to get latest pacakge. [email protected] will be kept updating to the latest patch version 3.9.x.

If you REALLY to stick with specific python version, choose conda (miniconda is preferred) or pyenv.

Upvotes: 2

Related Questions