On Sun, May 19, 2013 at 4:12 AM, Huiqun Zhou <[email protected]> wrote: > Hi, > > I'm trying to install numpy, but got the following error message. What's > wrong?
You're using an older version of setuptools or distribute that doesn't support packages writing to /dev/null in their installation scripts. If you are using setuptools (not distribute), you can upgrade using "easy_install -U setuptools" to get the latest development snapshot, which fixes this problem. If you are using distribute, upgrade to a newer version. I can't guarantee you that this will let you install numpy the rest of the way, but it will at least fix the SandboxViolation error. _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
