Chapter 4. Reviewing Red Hat AI Inference Server Python packages
You can review the Python packages installed in the Red Hat AI Inference Server container image by running the container with Podman and reviewing the pip list package output.
Prerequisites
- You are logged in as a user with sudo access.
-
You have access to
registry.redhat.ioand have logged in.
Procedure
Run the Red Hat Enterprise Linux AI container image with the
pip list packagecommand to view all installed Python packages. For example:$ podman run --rm --entrypoint=/bin/bash \ registry.redhat.io/rhaii-early-access/vllm-cuda-rhel9:3.4.0-ea.1 \ -c "pip list"To view detailed information about a specific package, run the Podman command with
pip show <package_name>. For example:$ podman run --rm --entrypoint=/bin/bash \ registry.redhat.io/rhaii-early-access/vllm-cuda-rhel9:3.4.0-ea.1 \ -c "pip show vllm"Example output
Name: vllm Version: v0.14.1