def configure_parser(sub_parsers): p = sub_parsers.add_parser( 'remove', formatter_class = RawDescriptionHelpFormatter, description = descr, help = help, epilog = example, ) common.add_parser_yes(p) p.add_argument( "--all", action = "store_true", help = "remove all packages, i.e. the entire environment", ) p.add_argument( "--features", action = "store_true", help = "remove features (instead of packages)", ) common.add_parser_channels(p) common.add_parser_prefix(p) common.add_parser_quiet(p) p.add_argument( 'package_names', metavar = 'package_name', action = "store", nargs = '*', help = "package names to remove from environment", ) p.set_defaults(func=execute)
def configure_parser(sub_parsers): p = sub_parsers.add_parser( 'create', formatter_class = RawDescriptionHelpFormatter, description = descr, help = descr, epilog = example, ) common.add_parser_yes(p) p.add_argument( '-f', "--file", action = "store", help = "filename to read package specs from", ) common.add_parser_channels(p) common.add_parser_prefix(p) common.add_parser_quiet(p) p.add_argument( 'package_specs', metavar = 'package_spec', action = "store", nargs = '*', help = "specification of package to install into new environment", ) p.set_defaults(func=execute)
def configure_parser(sub_parsers): p = sub_parsers.add_parser( 'install', formatter_class = RawDescriptionHelpFormatter, description = descr, help = help, epilog = example, ) common.add_parser_yes(p) p.add_argument( '-f', "--force", action = "store_true", help = "force install (even when package already installed), " "implies --no-deps", ) p.add_argument( "--file", action = "store", help = "read package versions from FILE", ) p.add_argument( "--no-deps", action = "store_true", help = "do not install dependencies", ) common.add_parser_channels(p) common.add_parser_prefix(p) common.add_parser_quiet(p) p.add_argument( 'packages', metavar = 'package_spec', action = "store", nargs = '*', help = "package versions to install into conda environment", ) p.set_defaults(func=execute)