cmd apio info - zapta/apio-new-doc-wiki.delete-me GitHub Wiki

Apio info

The command group apio info contains subcommands that provide additional information about Apio and your system.

OPTIONS

-h, --help  Show this message and exit.

SUBCOMMANDS

apio info platforms
apio info system
apio info colors

Apio info platforms

The command apio info platforms lists the platform IDs supported by Apio, with the effective platform ID of your system highlighted.

EXAMPLES

apio info platforms   # List supported platform ids.

OPTIONS

-h, --help  Show this message and exit.

NOTES

  • The automatic platform ID detection of Apio can be overridden by setting the env var APIO_PLATFORM to the desired platform ID. Please consult the Apio team before using this env var.

Apio info system

The command apio info system provides general information about your system and Apio installation, which is useful for diagnosing Apio installation issues.

EXAMPLES

apio info system   # Show system info.

OPTIONS

-h, --help  Show this message and exit.

NOTES

  • [Advanced] The default location of the Apio home directory, where apio saves preferences and packages, is in the .apio directory under the user home directory but can be changed using the system environment variable APIO_HOME.

Apio info colors

The command apio info colors shows how ansi colors are rendered on the platform, and is typically used to diagnose color related issues. While the color name and styling is always handled by the Python Rich library, the output is done via three different libraries, based on the user's selection.

EXAMPLES

apio info colors           # Rich library output (default)
apio info colors --rich    # Same as above.
apio info colors --click   # Click library output.
apio info colors --print   # Python's print() output.
apio sys col -p            # Using command shortcuts.

OPTIONS

-r, --rich   Output using the rich lib.
-c, --click  Output using the click lib.
-p, --print  Output using python's print().
-h, --help   Show this message and exit.