I have a conda environment on my local machine that has built some pip
and conda
packages. I want this environment to be available at a remote machine that does not have access to internet.
One way is to freeze the environment into a environment.yml
or requirements.txt
and be able to re-build the environment but this would fail since, the remote machine does not have access to online pip
and conda
repositories.
The other way is if I can transfer the folder anaconda3/envs/<env_name>
to the remote machine, it should have all packages available on the remote machine.