Skip to content Skip to sidebar Skip to footer

Installing Numpy On Fedora 19 With Pip

I tried to install Python 2.7 Numpy module on Fedora 19 using pip: sudo pip install numpy But I have the following error: 'Cannot compile 'Python.h'. Perhaps you need to '\ Syste

Solution 1:

sudo yum install python-devel

And then it shall work flawlessly.


Solution 2:

The development version of python needs to be installed:

yum install python-devel

Post a Comment for "Installing Numpy On Fedora 19 With Pip"