Say I have a coworker who doesn't use conda, but instead uses a global python environment.
Is there a way for the coworker to use conda to create a conda environment from his global python environment?
The goal is for me to easily create a conda environment on my computer which matches his python environment.
You could ask your coworker to send his list of currently installed python packages using:
Without forgetting a
pip -V
that returns his current version of python.When the conda environment is set up on your machine with the correct version of python, install the list of packages your coworker gave you:
It will only do the python part, so if additionnal libraries are needed, you might have to install them by hand (for example: c++ redistributables, Qt, imagemagick...)