> ## Documentation Index
> Fetch the complete documentation index at: https://docs.askui.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AskUI-ShowInstalledPythonPackageVersion

### SYNOPSIS

Shows the version of an installed Python package.

### DESCRIPTION

The AskUI-ShowInstalledPythonPackageVersion cmdlet retrieves the version information for a specified Python package installed in the environment.

### PARAMETERS

* `-PackageName` | *\<String>* - The name of the Python package whose version is to be retrieved.

### EXAMPLES

#### EXAMPLE 1

Shows the version of the "numpy" package installed.

```powershell theme={null}
AskUI-ShowInstalledPythonPackageVersion -PackageName "numpy"
```

#### EXAMPLE 2

Shows the version of the "requests" package installed.

```powershell theme={null}
AskUI-ShowInstalledPythonPackageVersion -PackageName "requests"
```
