Installieren

irm https://claude.ai/install.ps1 | iex
Windows PowerShell

Pfad direkt in der PowerShell zum Benutzer-PATH hinzufügen:

[Environment]::SetEnvironmentVariable(
    "Path",
    $env:Path + ";C:\Users\Andreas\.local\bin",
    "User"
)
Windows PowerShell

Danach entweder das Terminal neu starten oder die Variablen neu laden:

$env:Path = [Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [Environment]::GetEnvironmentVariable("Path", "User")
Windows PowerShell