{
"name": "conda",
"description": "Conda package manager",
"subcommands": [
{
"name": "activate",
"description": "Activate an environment",
"options": [
{
"names": [
"--stack"
],
"description": "Stack the environment being activated on top of the previous active environment"
},
{
"names": [
"--no-stack"
],
"description": "Do not stack the environment. Overrides 'auto_stack' setting"
}
]
},
{
"name": "deactivate",
"description": "Deactivate an environment"
},
{
"name": "clean",
"description": "Remove unused packages and caches",
"options": [
{
"names": [
"-a",
"--all"
],
"description": "Remove index cache, lock files, unused cache packages, and tarballs"
},
{
"names": [
"-i",
"--index-cache"
],
"description": "Remove index cache"
},
{
"names": [
"-p",
"--packages"
],
"description": "Remove unused packages from writable package caches"
},
{
"names": [
"-t",
"--tarballs"
],
"description": "Remove cached package tarballs"
},
{
"names": [
"-f",
"--force-pkgs-dirs"
],
"description": "Remove all writable package caches"
},
{
"names": [
"-c",
"--tempfiles"
],
"description": "Remove temporary files that could not be deleted earlier due to being in-use. Argument is path(s) to prefix(es) where files should be found and removed",
"takes_arg": true,
"arg": {
"is_variadic": true,
"template": "filepaths"
}
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
}
]
},
{
"name": "compare",
"description": "Compare packages between conda environments",
"options": [
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-h",
"--help"
],
"description": "Show this help message and exit"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Use once for info, twice for debug, three times for trace"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
}
],
"args": [
{
"name": "file",
"description": "Path to the environment file that is to be compared against",
"template": "filepaths"
}
]
},
{
"name": "config",
"description": "Modify configuration values in .condarc. This is modeled after the git config command. Writes to the user .condarc file by default",
"options": [
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Use once for info, twice for debug, three times for trace"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"--system"
],
"description": "Write to the system .condarc file at '/home/docs/checkouts/readthedocs.org/user_builds/continuumio-conda/conda/latest/.condarc'"
},
{
"names": [
"--env"
],
"description": "Write to the active conda environment .condarc file (<no active environment>). If no environment is active, write to the user config file (/home/docs/.condarc)"
},
{
"names": [
"--file"
],
"description": "Write to the given file",
"takes_arg": true,
"arg": {
"name": "Target File",
"template": "filepaths"
}
},
{
"names": [
"--show"
],
"description": "Display configuration values as calculated and compiled. If no arguments given, show information for all configuration values",
"takes_arg": true,
"arg": {
"name": "Configuration values",
"is_variadic": true
}
},
{
"names": [
"--show-sources"
],
"description": "Display all identified configuration sources"
},
{
"names": [
"--validate"
],
"description": "Validate all configuration sources"
},
{
"names": [
"--describe"
],
"description": "Describe given configuration parameters. If no arguments given, show information for all configuration parameters",
"takes_arg": true,
"arg": {
"name": "Configuration values",
"is_variadic": true
}
},
{
"names": [
"--write-default"
],
"description": "Write the default configuration to a file. Equivalent to conda config --describe > ~/.condarc"
},
{
"names": [
"--get"
],
"description": "Get a configuration value",
"takes_arg": true,
"arg": {
"name": "key",
"is_variadic": true
}
},
{
"names": [
"--append"
],
"description": "Add one configuration value to the end of a list key",
"takes_arg": true,
"arg": {
"name": "key"
}
},
{
"names": [
"--prepend",
"--add"
],
"description": "Add one configuration value to the beginning of a list key",
"takes_arg": true,
"arg": {
"name": "key"
}
},
{
"names": [
"--set"
],
"description": "Set a boolean or string key",
"takes_arg": true,
"arg": {
"name": "key"
}
},
{
"names": [
"--remove"
],
"description": "Remove a configuration value from a list key. This removes all instances of the value",
"takes_arg": true,
"arg": {
"name": "key"
}
},
{
"names": [
"--remove-key"
],
"description": "Remove a configuration key (and all its values)",
"takes_arg": true,
"arg": {
"name": "key"
}
},
{
"names": [
"--stdin"
],
"description": "Apply configuration information given in yaml format piped through stdin"
}
]
},
{
"name": "create",
"description": "Create a new conda environment from a list of specified packages",
"options": [
{
"names": [
"--clone"
],
"description": "Path to (or name of) existing local environment",
"takes_arg": true
},
{
"names": [
"--file"
],
"description": "Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2)",
"takes_arg": true,
"arg": {
"template": "filepaths"
}
},
{
"names": [
"--dev"
],
"description": "Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions"
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"--strict-channel-priority"
],
"description": "Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel"
},
{
"names": [
"--no-channel-priority"
],
"description": "Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority"
},
{
"names": [
"--no-deps"
],
"description": "Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk"
},
{
"names": [
"--only-deps"
],
"description": "Only install dependencies"
},
{
"names": [
"--no-pin"
],
"description": "Ignore pinned file"
},
{
"names": [
"--no-default-packages"
],
"description": "Ignore create_default_packages in the .condarc file"
},
{
"names": [
"--copy"
],
"description": "Install all packages using copies instead of hard- or soft-linking"
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
},
{
"names": [
"--download-only"
],
"description": "Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix"
},
{
"names": [
"--show-channel-urls"
],
"description": "Show channel urls. Overrides the value given by conda config --show show_channel_urls"
}
],
"args": [
{
"name": "package_spec",
"description": "Packages to install or update in the conda environment",
"is_variadic": true
}
]
},
{
"name": "help",
"description": "Displays a list of available conda commands and their help strings"
},
{
"name": "info",
"description": "Display information about current conda install",
"options": [
{
"names": [
"-a",
"--all"
],
"description": "Show all information"
},
{
"names": [
"--base"
],
"description": "Display base environment path"
},
{
"names": [
"-e",
"--envs"
],
"description": "List all known conda environments"
},
{
"names": [
"-s",
"--system"
],
"description": "List environment variables"
},
{
"names": [
"--unsafe-channels"
],
"description": "Display list of channels with tokens exposed"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Use once for info, twice for debug, three times for trace"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
}
]
},
{
"name": "init",
"description": "Initialize conda for shell interaction. [Experimental]"
},
{
"name": "install",
"description": "Installs a list of packages into a specified conda environment",
"options": [
{
"names": [
"--revision"
],
"description": "Revert to the specified REVISION",
"takes_arg": true
},
{
"names": [
"--file"
],
"description": "Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2)",
"takes_arg": true,
"arg": {
"template": "filepaths"
}
},
{
"names": [
"--dev"
],
"description": "Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions"
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"--strict-channel-priority"
],
"description": "Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel"
},
{
"names": [
"--no-channel-priority"
],
"description": "Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority"
},
{
"names": [
"--no-deps"
],
"description": "Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk"
},
{
"names": [
"--only-deps"
],
"description": "Only install dependencies"
},
{
"names": [
"--no-pin"
],
"description": "Ignore pinned file"
},
{
"names": [
"--force-reinstall"
],
"description": "Ensure that any user-requested package for the current operation is uninstalled and reinstalled, even if that package already exists in the environment"
},
{
"names": [
"--freeze-installed",
"--no-update-deps"
],
"description": "Do not update or change already-installed dependencies"
},
{
"names": [
"--update-deps"
],
"description": "Update dependencies"
},
{
"names": [
"-S",
"--satisfied-skip-solve"
],
"description": "Exit early and do not run the solver if the requested specs are satisfied. Also skips aggressive updates as configured by 'aggressive_update_packages'. Similar to the default behavior of 'pip install'"
},
{
"names": [
"--update-all",
"--all"
],
"description": "Update all installed packages in the environment"
},
{
"names": [
"--update-specs"
],
"description": "Update based on provided specifications"
},
{
"names": [
"--copy"
],
"description": "Install all packages using copies instead of hard- or soft-linking"
},
{
"names": [
"-m",
"--mkdir"
],
"description": "Create the environment directory if necessary"
},
{
"names": [
"--clobber"
],
"description": "Allow clobbering of overlapping file paths within packages, and suppress related warnings"
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
},
{
"names": [
"--download-only"
],
"description": "Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix"
},
{
"names": [
"--show-channel-urls"
],
"description": "Show channel urls. Overrides the value given by conda config --show show_channel_urls"
}
],
"args": [
{
"name": "package spec",
"description": "Packages to install or update in the conda environment",
"is_variadic": true
}
]
},
{
"name": "list",
"description": "List linked packages in a conda environment",
"options": [
{
"names": [
"--show-channel-urls"
],
"description": "Show channel urls. Overrides the value given by conda config --show show_channel_urls"
},
{
"names": [
"-c",
"--canonical"
],
"description": "Output canonical names of packages only. Implies --no-pip"
},
{
"names": [
"-f",
"--full-name"
],
"description": "Only search for full names, i.e., ^<regex>$"
},
{
"names": [
"--explicit"
],
"description": "List explicitly all installed conda packaged with URL (output may be used by conda create --file)"
},
{
"names": [
"--md5"
],
"description": "Add MD5 hashsum when using --explicit"
},
{
"names": [
"-e",
"--export"
],
"description": "Output requirement string only (output may be used by conda create --file)"
},
{
"names": [
"-r",
"--revisions"
],
"description": "List the revision history and exit"
},
{
"names": [
"--no-pip"
],
"description": "Do not include pip-only installed packages"
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Use once for info, twice for debug, three times for trace"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
}
],
"args": [
{
"name": "regex",
"description": "List only packages matching this regular expression"
}
]
},
{
"name": "package",
"description": "Low-level conda package utility. (EXPERIMENTAL)",
"options": [
{
"names": [
"-w",
"--which"
],
"description": "Given some PATH print which conda package the file came from",
"takes_arg": true,
"arg": {
"name": "Path",
"is_variadic": true
}
},
{
"names": [
"-r",
"--reset"
],
"description": "Remove all untracked files and exit"
},
{
"names": [
"-u",
"--untracked"
],
"description": "Display all untracked files and exit"
},
{
"names": [
"--pkg-name"
],
"description": "Package name of the created package",
"takes_arg": true
},
{
"names": [
"--pkg-version"
],
"description": "Package version of the created package",
"takes_arg": true
},
{
"names": [
"--pkg-build"
],
"description": "Package build number of the created package",
"takes_arg": true
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
}
]
},
{
"name": "remove",
"description": "Remove a list of packages from a specified conda environment",
"options": [
{
"names": [
"--dev"
],
"description": "Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions"
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"--all"
],
"description": "Remove all packages, i.e., the entire environment"
},
{
"names": [
"--features"
],
"description": "Remove features (instead of packages)"
},
{
"names": [
"--force-remove",
"--force"
],
"description": "Forces removal of a package without removing packages that depend on it. Using this option will usually leave your environment in a broken and inconsistent state"
},
{
"names": [
"--no-pin"
],
"description": "Ignore pinned file"
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
}
],
"args": [
{
"name": "package name",
"is_variadic": true
}
]
},
{
"name": "uninstall",
"description": "Alias for conda remove",
"options": [
{
"names": [
"--dev"
],
"description": "Use sys.executable -m conda in wrapper scripts instead of CONDA_EXE. This is mainly for use during tests where we test new conda source against old Python versions"
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"--all"
],
"description": "Remove all packages, i.e., the entire environment"
},
{
"names": [
"--features"
],
"description": "Remove features (instead of packages)"
},
{
"names": [
"--force-remove",
"--force"
],
"description": "Forces removal of a package without removing packages that depend on it. Using this option will usually leave your environment in a broken and inconsistent state"
},
{
"names": [
"--no-pin"
],
"description": "Ignore pinned file"
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
}
],
"args": [
{
"name": "package name",
"is_variadic": true
}
]
},
{
"name": "run",
"description": "Run an executable in a conda environment. [Experimental]",
"options": [
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-v",
"--verbose"
],
"description": "Use once for info, twice for debug, three times for trace"
},
{
"names": [
"--dev"
],
"description": "Sets `CONDA_EXE` to `python -m conda`, assuming the CWD contains the root of conda development sources"
},
{
"names": [
"--debug-wrapper-scripts"
],
"description": "When this is set, where implemented, the shell wrapper scripts will echo to stderr a lot of debugging information"
},
{
"names": [
"--cwd"
],
"description": "Current working directory for command to run in. Defaults to cwd",
"takes_arg": true
},
{
"names": [
"--no-capture-output"
],
"description": "Don't capture stdout/stderr"
},
{
"names": [
"--live-stream"
],
"description": "Display the output for the subprocess stdout and stderr on real time"
}
],
"args": [
{
"name": "executable",
"template": "filepaths"
}
]
},
{
"name": "search",
"description": "Search for packages and display associated information. The input is a MatchSpec, a query language for conda packages. See examples below",
"options": [
{
"names": [
"--envs"
],
"description": "Search all of the current user's environments. If run as Administrator (on Windows) or UID 0 (on unix), search all known environments on the system"
},
{
"names": [
"-i",
"--info"
],
"description": "Provide detailed information about each package"
},
{
"names": [
"--subdir",
"--platform"
],
"description": "Search the given subdir. Should be formatted like 'osx-64', 'linux-32', 'win-64', and so on. The default is to search the current platform",
"takes_arg": true
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Use once for info, twice for debug, three times for trace"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
}
],
"args": [
{
"name": "query"
}
]
},
{
"name": "update",
"description": "Updates conda packages to the latest compatible version",
"options": [
{
"names": [
"--file"
],
"description": "Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2)",
"takes_arg": true,
"arg": {
"template": "filepaths"
}
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"--strict-channel-priority"
],
"description": "Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel"
},
{
"names": [
"--no-channel-priority"
],
"description": "Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority"
},
{
"names": [
"--no-deps"
],
"description": "Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk"
},
{
"names": [
"--only-deps"
],
"description": "Only install dependencies"
},
{
"names": [
"--no-pin"
],
"description": "Ignore pinned file"
},
{
"names": [
"--force-reinstall"
],
"description": "Ensure that any user-requested package for the current operation is uninstalled and reinstalled, even if that package already exists in the environment"
},
{
"names": [
"--freeze-installed",
"--no-update-deps"
],
"description": "Do not update or change already-installed dependencies"
},
{
"names": [
"--update-deps"
],
"description": "Update dependencies"
},
{
"names": [
"-S",
"--satisfied-skip-solve"
],
"description": "Exit early and do not run the solver if the requested specs are satisfied. Also skips aggressive updates as configured by 'aggressive_update_packages'. Similar to the default behavior of 'pip install'"
},
{
"names": [
"--update-all",
"--all"
],
"description": "Update all installed packages in the environment"
},
{
"names": [
"--update-specs"
],
"description": "Update based on provided specifications"
},
{
"names": [
"--copy"
],
"description": "Install all packages using copies instead of hard- or soft-linking"
},
{
"names": [
"--clobber"
],
"description": "Allow clobbering of overlapping file paths within packages, and suppress related warnings"
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
},
{
"names": [
"--download-only"
],
"description": "Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix"
},
{
"names": [
"--show-channel-urls"
],
"description": "Show channel urls. Overrides the value given by conda config --show show_channel_urls"
}
],
"args": [
{
"name": "package",
"is_variadic": true,
"suggestions": [
"conda"
]
}
]
},
{
"name": "upgrade",
"description": "Alias for conda update",
"options": [
{
"names": [
"--file"
],
"description": "Read package versions from the given file. Repeated file specifications can be passed (e.g. --file=file1 --file=file2)",
"takes_arg": true,
"arg": {
"template": "filepaths"
}
},
{
"names": [
"-n",
"--name"
],
"description": "Name of environment",
"takes_arg": true,
"arg": {
"name": "Environment"
}
},
{
"names": [
"-p",
"--prefix"
],
"description": "Full path to environment location (i.e. prefix)",
"takes_arg": true,
"arg": {
"name": "path",
"template": "filepaths"
}
},
{
"names": [
"-c",
"--channel"
],
"description": "They are given (including local directories using the 'file://' syntax or simply a path like '/home/conda/mychan' or '../mychan'). Then, the defaults or channels from .condarc are searched (unless --o",
"takes_arg": true
},
{
"names": [
"--use-local"
],
"description": "Use locally built packages. Identical to '-c local'"
},
{
"names": [
"--override-channels"
],
"description": "Do not search default or .condarc channels. Requires --channel"
},
{
"names": [
"--repodata-fn"
],
"description": "Specify name of repodata on remote server. Conda will try whatever you specify, but will ultimately fall back to repodata.json if your specs are not satisfiable with what you specify here. This is use",
"takes_arg": true
},
{
"names": [
"--strict-channel-priority"
],
"description": "Packages in lower priority channels are not considered if a package with the same name appears in a higher priority channel"
},
{
"names": [
"--no-channel-priority"
],
"description": "Package version takes precedence over channel priority. Overrides the value given by conda config --show channel_priority"
},
{
"names": [
"--no-deps"
],
"description": "Do not install, update, remove, or change dependencies. This WILL lead to broken environments and inconsistent behavior. Use at your own risk"
},
{
"names": [
"--only-deps"
],
"description": "Only install dependencies"
},
{
"names": [
"--no-pin"
],
"description": "Ignore pinned file"
},
{
"names": [
"--force-reinstall"
],
"description": "Ensure that any user-requested package for the current operation is uninstalled and reinstalled, even if that package already exists in the environment"
},
{
"names": [
"--freeze-installed",
"--no-update-deps"
],
"description": "Do not update or change already-installed dependencies"
},
{
"names": [
"--update-deps"
],
"description": "Update dependencies"
},
{
"names": [
"-S",
"--satisfied-skip-solve"
],
"description": "Exit early and do not run the solver if the requested specs are satisfied. Also skips aggressive updates as configured by 'aggressive_update_packages'. Similar to the default behavior of 'pip install'"
},
{
"names": [
"--update-all",
"--all"
],
"description": "Update all installed packages in the environment"
},
{
"names": [
"--update-specs"
],
"description": "Update based on provided specifications"
},
{
"names": [
"--copy"
],
"description": "Install all packages using copies instead of hard- or soft-linking"
},
{
"names": [
"--clobber"
],
"description": "Allow clobbering of overlapping file paths within packages, and suppress related warnings"
},
{
"names": [
"-C",
"--use-index-cache"
],
"description": "Use cache of channel index files, even if it has expired"
},
{
"names": [
"-k",
"--insecure"
],
"description": "Allow conda to perform insecure SSL connections and transfers. Equivalent to setting 'ssl_verify' to 'false'"
},
{
"names": [
"--offline"
],
"description": "Offline mode. Don't connect to the Internet"
},
{
"names": [
"-d",
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"--json"
],
"description": "Report all output as json. Suitable for using conda programmatically"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Do not display progress bar"
},
{
"names": [
"-v",
"--verbose"
],
"description": "Can be used multiple times. Once for INFO, twice for DEBUG, three times for TRACE"
},
{
"names": [
"-y",
"--yes"
],
"description": "Do not ask for confirmation"
},
{
"names": [
"--download-only"
],
"description": "Solve an environment and ensure package caches are populated, but exit prior to unlinking and linking packages into the prefix"
},
{
"names": [
"--show-channel-urls"
],
"description": "Show channel urls. Overrides the value given by conda config --show show_channel_urls"
}
],
"args": [
{
"name": "package",
"is_variadic": true,
"suggestions": [
"conda"
]
}
]
},
{
"name": "build"
},
{
"name": "convert",
"description": "Various tools to convert conda packages. Takes a pure Python package build for one platform and converts it to work on one or more other platforms, or all",
"options": [
{
"names": [
"-h",
"--help"
],
"description": "Show this help message and exit"
},
{
"names": [
"-p",
"--platform"
],
"description": "Platform to convert the packages to",
"takes_arg": true,
"arg": {
"suggestions": [
"osx-64",
"osx-arm64",
"linux-32",
"linux-64",
"linux-ppc64",
"linux-ppc64le",
"linux-s390x",
"linux-armv6l",
"linux-armv7l",
"linux-aarch64",
"win-32",
"win-64",
"all"
]
}
},
{
"names": [
"--dependencies",
"-d"
],
"description": "Additional (besides python) dependencies of the converted package",
"takes_arg": true,
"arg": {
"name": "Dependencies",
"is_variadic": true
}
},
{
"names": [
"--show-imports"
],
"description": "Show Python imports for compiled parts of the package"
},
{
"names": [
"-f",
"--force"
],
"description": "Force convert, even when a package has compiled C extensions"
},
{
"names": [
"-o",
"--output-dir"
],
"description": "Directory to write the output files. The packages will be organized in platform/ subdirectories, e.g., win-32/package-1.0-py27_0.tar.bz2",
"takes_arg": true,
"arg": {
"name": "Output Directory"
}
},
{
"names": [
"-v",
"--verbose"
],
"description": "Print verbose output"
},
{
"names": [
"--dry-run"
],
"description": "Only display what would have been done"
},
{
"names": [
"-q",
"--quiet"
],
"description": "Don't print as much output"
}
],
"args": [
{
"name": "files",
"description": "Package files to convert",
"is_variadic": true,
"template": "filepaths"
}
]
},
{
"name": "debug"
},
{
"name": "develop"
},
{
"name": "env",
"subcommands": [
{
"name": "list"
},
{
"name": "remove",
"options": [
{
"names": [
"-n"
],
"takes_arg": true,
"arg": {
"name": "environment variable"
}
}
]
}
]
},
{
"name": "index"
},
{
"name": "inspect"
},
{
"name": "metapackage"
},
{
"name": "render"
},
{
"name": "server"
},
{
"name": "skeleton"
},
{
"name": "verify"
}
],
"options": [
{
"names": [
"-h",
"--help"
],
"description": "Show this help message and exit"
},
{
"names": [
"-V",
"--version"
],
"description": "Show the conda version number and exit"
}
]
}