Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to install numpy under Python 3.3.0 running Mac OS 10.7.5 (Lion) and using the compilers that come with Xcode 4.5.1. I installed Python 3 and gfortran using homebrew without any hiccups, but pip3 install numpy fails. Looking at other suggestions online, I tried setting clang as the C compiler using

export CC=clang
export CXX=clang
export FFLAGS=-ff2c

but received the same error. The final line reports ValueError: underlying buffer has been detached, and I posted the full output.

So, instead I tried building directly from source using the instructions from SciPy.org. This appears to succeed; the build and install processes run to completion, although they are not shy about reporting warnings. The full log is again available as a Gist. I can then run numpy.test('full') from Python 3, and although there are some warnings about unclosed files that I don't understand, it reports that all tests pass.

Does anyone know why pip fails to build numpy when I can apparently do it manually without a problem?

share|improve this question
2  
I don't know about compiling especially on Mac, but doesn't pip3 get the 1.6 version while you basically compiled the 1.7 version? That could be a difference... – seberg Nov 1 '12 at 21:26
@seberg That's a great point, and when I try to compile the 1.6.2 version myself it does indeed fail. So that answers why pip was behaving differently; now I need to figure out why the build of SciPy is failing. Thanks! – DGrady Nov 1 '12 at 22:52
I get exactly the same error in Arch Linux. – Juanlu001 Nov 9 '12 at 8:08
1  
This is github.com/pypa/virtualenv/issues/359 – Paul Nasrat Nov 23 '12 at 14:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.