0

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?

merv
  • 53,208
  • 11
  • 148
  • 196
masoud
  • 176
  • 13
  • I would note that once you have the files downloaded, copy all of them to the `pkgs` directory of the Conda installation, and then simply run `conda install atoti`, i.e., don't specify the `.tar.bz2` files directly. – merv Jan 30 '22 at 19:20
  • `conda-pack` might also be an alternative in case you already know exactly which packages you need in your env. – FlyingTeller Jan 31 '22 at 08:57

0 Answers0