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
Post a Comment