I am running a local installation of Anaconda + bunch of 3rd party tools (Mosek) + inhouse modules I wrote...
I understand I could wrap that all up using virtualenv (or conda) to make it a neat environment.
The company runs on a Win 8 network.
I think there are two fundamental approaches
1) I could install all of this on a network drive (does Python need write access for it's pyc files?). Is it enough if I dump it in a read-only folder? Is it enough if people only modify their path? What about the registry (and the related issues)?
2) People copy over the environment and install it locally. (Maybe with some sort of installer?). This way they can add further modules without bothering me to modify the one and only central Python.
I am calling the experts here...
Thomas