Avanish Tiwari
Avanish Tiwari

Reputation: 201

Mac install python3.6 with brew

I want to install python version 3.6. when I do brew install python it installs latest version of python i.e 3.8.

I tried below solution but it is giving me error.

brew install --ignore-dependencies https://raw.githubusercontent.com/Homebrew/homebrew-core/f2a764ef944b1080be64bd88dca9a1d80130c558/Formula/python.rb

Error:

Error: Calling Installation of python from a GitHub commit URL is disabled! Use 'brew extract python' to stable tap on GitHub instead.

I even tried solution in this link but not working.

Also When I do:

brew search python

I don't find [email protected] init

Upvotes: 18

Views: 28469

Answers (1)

chenrui
chenrui

Reputation: 9866

Maybe you should do pyenv to manage the different python versions.

brew install pyenv
pyenv install 3.6.5
pyenv install 3.7.4

If you want to control the shell to use different python versions, you can try this:

pyenv shell 3.6.5

Upvotes: 38

Related Questions