Is there an equivalent of conda-pack? #1369
-
Is there an equivalent of the conda-pack command (https://conda.github.io/conda-pack/) that helps deploy environments on systems that may not have conda, or now pixi, already installed? thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We don't have that yet, but for the time being the lock file in pixi allows you to have a guaranteed copy of a working environment. So if you can make |
Beta Was this translation helpful? Give feedback.
We don't have that yet, but for the time being the lock file in pixi allows you to have a guaranteed copy of a working environment. So if you can make
pixi
available on the production system then you would just need to clone the project andpixi install
to get it to the same stage. (assuming you don't use apost-install
task which might not be locked into thepixi.lock
).