Logging Out & Uninstalling
How to log out from Warp, and how to uninstall Warp.
Logging out
You can log out of Warp through:
Settings > Account, with the "Log out" buttonCommand Palette, with the "Log Out" item.

Known issues:
When you log out, you will lose all running processes and all unsaved objects.
When you log out and log in to Warp with another account, the following preferences will be preserved from the original account:
Theme
Keybindings
Settings (e.g. autosuggestion, notifications, font size, welcome tips status)
Whenever you log in to Warp, you will receive the onboarding survey.
Uninstalling Warp
Removing Warp from your computer involves uninstalling Warp and then removing any files or data.
Uninstalling Warp by dmg
Remove Warp with
sudo rm -r /Applications/Warp.appGo to Mac
Finder > Applicationsand right-click on Warp, and "Move to Trash"
Uninstalling Warp by Homebrew
Remove Warp with
brew uninstall warp
Removing Warp settings, files, logs, and database
# Remove Warp settings defaults
defaults delete dev.warp.Warp-Stable
# Remove Warp logs
sudo rm -r $HOME/Library/Logs/warp.log
# Remove Warp database, codebase context, and mcp logs
sudo rm -r "$HOME/Library/Application Support/dev.warp.Warp-Stable"
# Remove Warp user files, themes, and launch configurations
sudo rm -r $HOME/.warp
# Note: Removing $HOME/.warp will delete files for both Stable and Preview.
# If you wish to delete it all, then: sudo rm -r $HOME/.warpFor Warp Preview users:
# Remove Warp Preview settings defaults
defaults delete dev.warp.Warp-Preview
# Remove Warp Preview logs
sudo rm -r $HOME/Library/Logs/warp_preview.log
# Remove Warp Preview database, codebase context, and mcp logs
sudo rm -r "$HOME/Library/Application Support/dev.warp.Warp-Preview"
# Note: Removing $HOME/.warp will delete files for both Preview and Stable.
# If you wish to delete it all, then: sudo rm -r $HOME/.warpUninstalling Warp installed by Installer
Search for "Installed apps" section of the Control Panel.
Search for and Uninstall the Warp application
Removing Warp settings, files, logs, and database
# Remove Warp settings in the Windows Registry
Remove-Item -Path "HKCU:\Software\Warp.dev\Warp" -Recurse -Force
# Remove Warp user files, logs, database, codebase context, and mcp logs
Remove-Item -Path "$env:LOCALAPPDATA\warp\Warp" -Recurse -Force
# Remove Warp themes and launch configurations
Remove-Item -Path "$env:APPDATA\warp\Warp" -Recurse -ForceFor Warp Preview users:
# Remove Warp Preview settings in the Windows Registry
Remove-Item -Path "HKCU:\Software\Warp.dev\Warp-Preview" -Recurse -Force
# Remove Warp Preview user files, logs, database, codebase context, and mcp logs
Remove-Item -Path "$env:LOCALAPPDATA\warp\Warp-Preview" -Recurse -Force
# Remove Warp Preview themes and launch configurations
Remove-Item -Path "$env:APPDATA\warp\Warp-Preview" -Recurse -ForceUninstalling Warp by package manager
# apt uninstall
sudo apt remove warp-terminal
# dnf uninstall
sudo dnf remove warp-terminal
# zypper uninstall
sudo zypper remove warp-terminal
# pacman uninstall
sudo pacman -R warp-terminalUninstall Warp using the same package manager that you used to install it.
Removing Warp settings, files, logs, and database
# Remove Warp settings files
rm -r ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal
# Remove Warp user files, logs, database, codebase context, and mcp logs
rm -r ${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal
# Remove Warp themes and launch configurations
rm -r ${XDG_STATE_HOME:-$HOME/.local/share}/warp-terminalFor Warp Preview users:
# apt uninstall
sudo apt remove warp-terminal-preview
# dnf uninstall
sudo dnf remove warp-terminal-preview
# zypper uninstall
sudo zypper remove warp-terminal-preview
# pacman uninstall
sudo pacman -R warp-terminal-previewUninstall Warp Preview using the same package manager that you used to install it.
# Remove Warp Preview settings files
rm -r ${XDG_CONFIG_HOME:-$HOME/.config}/warp-terminal-preview
# Remove Warp Preview user files, logs, database, codebase context, and mcp logs
rm -r ${XDG_STATE_HOME:-$HOME/.local/state}/warp-terminal-preview
# Remove Warp Preview themes and launch configurations
rm -r ${XDG_STATE_HOME:-$HOME/.local/share}/warp-terminal-previewLast updated
Was this helpful?