Source:
https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
On the existing conda environment dump a requirements txt file
On the other machine, create an environment using the requirements file
To install on an existing environment (for e.g. after setting up Keras)
https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
On the existing conda environment dump a requirements txt file
conda list --explicit > spec-file.txt
On the other machine, create an environment using the requirements file
conda create --name myenv --file spec-file.txt
To install on an existing environment (for e.g. after setting up Keras)
conda install --name myenv --file spec-file.txt
No comments:
Post a Comment