Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install python3.4-dev for Mac?

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?

like image 886
CommonSenseCode Avatar asked Jan 19 '17 14:01

CommonSenseCode


People also ask

How do I upgrade to Python 3.9 Mac?

Upgrade Python with the Installer Click the link to download the latest Python 3 release on your computer. 3. Run the installer. Go through the installation steps by clicking Continue, agreeing to the License, and confirming the installation location and type.


1 Answers

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 
like image 82
Harald Nordgren Avatar answered Oct 11 '22 06:10

Harald Nordgren