I have a set of networked computers that do not have access to the internet. On each of these computers, I need to install the Anaconda Python distribution. This is currently done by manually installing on each machine via a shared folder on a server.
However, this leaves the machines statically set to the version of Anaconda installed and not able to update using the conda update commands. This also means that environments cannot be created using the conda create command.
I would like to setup a centralized server where we can manually maintain the Anaconda Python versions (i.e. python 2.7.x and python 3.x). Users on the other machines would then point to this update server and would be able to update and even create new environments simply by using the conda update or conda create commands.
How do I set this up?