I have Anaconda installed on a RedHat-6.5 environment that is not connected to the Internet.
Is it possible to create a conda environment based on the existing Anaconda install, or minimal python packages?
FYI: I was able to clone a conda environment that already exists:
conda create -n dummy --clone my_env --offline
--offline
flag should work to install any package that is already cached in thepkgs
directory (i.e., already installed by conda at some point). - asmeurer