conan version

注意

此功能处于预览状态。这意味着它不太可能被删除,也不太可能有重大更改。维护人员将尽力不破坏它,只有在非常必要时才会这样做。有关更多信息,请参见Conan 稳定性部分。

$ conan version -h
usage: conan version [-h] [-v [V]] [-cc CORE_CONF] [-f FORMAT]

Give information about the Conan client version.

options:
  -h, --help            show this help message and exit
  -v [V]                Level of detail of the output. Valid options from less
                        verbose to more verbose: -vquiet, -verror, -vwarning,
                        -vnotice, -vstatus, -v or -vverbose, -vv or -vdebug,
                        -vvv or -vtrace
  -cc CORE_CONF, --core-conf CORE_CONF
                        Define core configuration, overwriting global.conf
                        values. E.g.: -cc core:non_interactive=True
  -f FORMAT, --format FORMAT
                        Select the output format: json

conan version 命令显示有关系统和 Python 环境的信息,包括 Conan 版本、Python 版本、系统平台、架构、发行版、CPU 等

  • version: Conan 版本。

  • conan_path: Conan 脚本的路径。

  • python: 一个包含有关 Python 环境信息的子字典,包括
    • version: 使用的 Python 版本。

    • sys_version: 完整的 Python 系统版本。

    • sys_executable: Python 可执行文件的路径。

    • is_frozen: 一个指示 Python 脚本是否作为冻结文件运行的指标(例如,使用 py2exe 或 PyInstaller)。

    • architecture: Python 检测到的架构。

  • system: 一个包含有关操作系统信息的子字典,包括
    • version: 操作系统版本。

    • platform: 系统的平台。

    • system: 操作系统的名称。

    • release: 操作系统的发行版本。

    • cpu: 有关系统 CPU 的信息。

$ conan version
version: 2.0.6
conan_path: /conan/venv/bin/conan
python
  version: 3.10.4
  sys_version: 3.10.4 (main, May 17 2022, 10:53:07) [Clang 13.1.6 (clang-1316.0.21.2.3)]
  sys_executable: /conan/venv/bin/python
  is_frozen: False
  architecture: arm64
system
  version: Darwin Kernel Version 23.4.0: Fri Mar 15 00:12:37 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_T6031
  platform: macOS-14.4.1-arm64-arm-64bit
  system: Darwin
  release: 23.4.0
  cpu: arm

conan version --format=json 以 JSON 输出格式返回 stdout (可以重定向到一个文件),结构如下

$ conan version --format=json
{
    "version": "2.0.6",
    "conan_path": "/Users/myUser/Documents/GitHub/conan/venv/bin/conan",
    "python": {
        "version": "3.10.4",
        "sys_version": "3.10.4 (main, May 17 2022, 10:53:07) [Clang 13.1.6 (clang-1316.0.21.2.3)]",
        "sys_executable": "/conan/venv/bin/python",
        "is_frozen": false,
        "architecture": "arm64"
    },
    "system": {
        "version": "Darwin Kernel Version 23.4.0: Fri Mar 15 00:12:37 PDT 2024; root:xnu-10063.101.17~1/RELEASE_ARM64_T6031",
        "platform": "macOS-14.4.1-arm64-arm-64bit",
        "system": "Darwin",
        "release": "23.4.0",
        "cpu": "arm"
    }
}