I am using numpy / scipy / pynest to do some research computing on Mac OS X. For performance, we rent a 400-node cluster (with Linux) from our university so that the tasks could be done parallel. The problem is that we are NOT allowed to install any extra packages on the cluster (no sudo or any installation tool), they only provide the raw python itself.
How can I run my scripts on the cluster then? Is there any way to integrate the modules (numpy and scipy also have some compiled binaries I think) so that it could be interpreted and executed without installing packages?
importon. If that's the issue, and you can't usepiporeasy_install, you can just download the packages and stick them right in your Pythonsite-packages, and then justimportthem.numpyandscipythat is true. But what do you mean by "can't install packages"? What exactly is it that you're not permitted to install/put on the cluster?sudo, and there's not any installation tool either.