> For the complete documentation index, see [llms.txt](https://docs.poshtools.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.poshtools.com/open-source-tools/psedit/installation.md).

# Installation

PSEdit is distributed through the PowerShell Gallery.

```powershell
Install-Module psedit
```

To install without administrator permissions, use the current-user scope.

```powershell
Install-Module psedit -Scope CurrentUser
```

## Optional Formatting Dependency

Install PSScriptAnalyzer to enable PowerShell formatting.

```powershell
Install-Module PSScriptAnalyzer
```

## Verify Installation

```powershell
Import-Module psedit
Get-Command Show-PSEditor
Get-Alias psedit
```
