I have an virtual environment created in Anaconda. How to save this environment and share it with my colleague, so that they can just use it without re-creating it. Thank you!
Asked
Active
Viewed 152 times
0
-
3Does this answer your question? [How to share conda environments across platforms](https://stackoverflow.com/questions/39280638/how-to-share-conda-environments-across-platforms) – bhristov Jun 23 '20 at 21:50
-
1Not sure about "*without re-creating it*". While there are things like [`conda-pack`](https://conda.github.io/conda-pack/), exporting the env (`conda env export > environment.yml`) and recreating it is the Conda idiom. Note that using flags like `--from-history` or `--no-builds` can be helpful if sharing across platforms. – merv Jun 24 '20 at 02:44