-
When using conda (miniconda or Anaconda), how do I ensure that all the reuired packages are installed and the dependencies are resolved? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Once you have installed Python and conda (either Anaconda or miniconda) on your machine, it is quite straightforward. In each branch, there should be a .yml file with the name of our environment, the necessary conda channels and all packages. You can install a working environment with just one line in your terminal. If you need additional packages, just add a line in the Happy coding |
Beta Was this translation helpful? Give feedback.
Once you have installed Python and conda (either Anaconda or miniconda) on your machine, it is quite straightforward. In each branch, there should be a .yml file with the name of our environment, the necessary conda channels and all packages. You can install a working environment with just one line in your terminal.
Simply navigate to the location where the
zen_garden_env.yml
file is sitting. Then paste the following code in your terminal or conda console:conda env create --file zen_garden_env.yml
This will install all packages and automatically sort out any dependecies and requirements that individual packages might have.
If you need additional packages, just add a line in the
zen_garde…