I want to install a Conda package in offline mode. I have tried to download bz2 files in other PC using this command:
conda install packagename --download-only
and moved the .bz2 file onto the offline PC and installed it using
conda install *.bz2
This works for a simple package. But for complex packages like atoti with a lot of dependencies, it seems that it can't be completely installed as other packages in offline PC are not compatible with atoti.
Is there any way to download all packages .bz2 files at once?