python - Numpy Pandas install fails with Sandbox violation on /dev/null -


i'm attempting install numpy , pandas jenkins server through requirements.txt. it's failing on below 2 lines in file.

numpy>=1.6.1 pandas==0.12.0 

the output being:

setuptools.sandbox.sandboxviolation: sandboxviolation: open('/dev/null', 'w') {}  package setup script has attempted modify files on system  not within easyinstall build area, , has been aborted. 

i've tried manually installing numpy , pandas install ignores they're satisfied , attempts , fails again.

here's more of console output: http://pastebin.com/gnscq75p

can see what's causing this? many thanks

solution future reference:

reason failed installation numpy , pandas have been installed 1 requirements.txt via pip install requirements.txt. failed, ignoring order of numpy , pandas. manually installing first numpy , pandas fixed problem.

easy_install numpy easy_install pandas 

or

pip install numpy pip install pandas 

alternatively 1 create 2 requirements.txt files, first 1 numpy included , second 1 pandas included, , install them via:

pip install requirements_one.txt pip install requirements_two.txt 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -