3.1.10. Miniconda Environment
The tool is located in tools/waf-tools.
3.1.10.1. Tool Documentation
Implements a waf tool to check that all requirements for the development workflow are installed properly.
Listing 3.13 shows how to use this tool.
1def options(opt):
2    opt.load("f_miniconda_env")
3
4def configure(conf):
5    conf.load("f_miniconda_env")
- f_miniconda_env.configure(conf)
- configuration step of the miniconda environment tool 
- f_miniconda_env.options(opt)
- Configuration options for the miniconda environment tool 
