Skip to content

Check and verify the status of Python and Flair NLP installation in the environment.

Usage

check_flairenv()

Value

A list containing environment status information:

  • status: Logical indicating if environment check passed

  • message: Status message

  • path: Path to Python environment

  • python_version: Installed Python version

  • flair_version: Installed Flair version (if available)

  • is_docker: Logical indicating if running in Docker

Details

Check Flair Environment Status

Examples

if (FALSE) { # \dontrun{
# Check environment status
env_status <- check_flairenv()

# Print status information
print(env_status)
} # }