6

I have pip and homebrew I have tried

pip search python3.4-dev and also brew search python and can't find python3.4-dev in any of them any ideas?

peterh
  • 11,875
  • 18
  • 85
  • 108
CommonSenseCode
  • 23,522
  • 33
  • 131
  • 186

2 Answers2

6

Pip won't install Python itself. pyenv can help you install any specific Python version you want. Look here:

https://github.com/yyuu/pyenv#installation

Then after installation, you run

pyenv install 3.4-dev 
Harald Nordgren
  • 11,693
  • 6
  • 41
  • 65
3

OS X does not have this package available. However, the package list can be found on the Debian site here. These packages come with py3.5 by default. Just try:

brew install python3
Charles Kenney
  • 360
  • 3
  • 12