3

I'm trying to follow the steps at https://conda.github.io/conda-pack/index.html?highlight=conda%20unpack to pack & unpack a conda env.

However, I don't see the conda-unpack script. Where should it be located?

user3731622
  • 4,844
  • 8
  • 45
  • 84

1 Answers1

3

The conda-unpack script is in the .tar.gz that you have created with conda-pack. It is located in the Scripts folder of the extracted environment. It should therefore be available after unpacking and activating the environment.

FlyingTeller
  • 17,638
  • 3
  • 38
  • 53
  • I unpacked the `.tar.gz` created with `conda-pack`. However, there is no `conda-unpack` in the `Scripts` folder. Should `conda-unpack` always be created or are there times it's not needed & thus not created? – user3731622 Jul 27 '21 at 17:25
  • Did you, by any chance provide either of the `--dest-prefix PATH` or `-d PATH` option to `conda-pack`? In that case, no unpack script would be generated3 – FlyingTeller Jul 28 '21 at 06:47
  • My last comment was incorrect. When I used `conda-pack`, the `conda-unpack` method was located where your answered said it would be. Thanks. – user3731622 Jul 28 '21 at 16:17
  • Ah okay, good to hear. Thanks for the update – FlyingTeller Jul 29 '21 at 07:07