logo
search
list

Table of Content

What the Classic Uninstall Threads Actually Show
Backup First: What Uninstall Does and Does Not Delete
Detect What Is Actually Installed
Remove a Deb / APT Install
Remove a Snap Install
Worked Example: Commands That Look Successful but Miss the App
When Software Center Cannot Remove It
Broken Package States During Uninstall
Optional Residual Cleanup (Last)
Verify Removal
Reinstall Notes After a Clean Removal
Safety Notes Before Force Flags
FAQ
Free Office Download

How to Uninstall WPS Office on Ubuntu

Posted by Algirdas Jasaitis

calendar

2026-07-24

views

871

likes

4

To uninstall WPS Office on Ubuntu, identify whether the suite was installed as a Deb package or as a Snap, then remove that exact package with the matching tool. Ask Ubuntu’s long-running uninstall threads start with a familiar Software Center problem: the store shows Reinstall instead of Remove after a crashy or unwanted install. Removing the wrong channel—or removing an unrelated libwps library—explains many “I uninstalled it but it is still there” and “I broke something else” reports.

Back up documents before purge-style cleanup. Success means package queries no longer list WPS Office and confirmed launchers are gone. Menu icons may linger until you refresh the session even when the package is already removed.

Uninstall WPS Office on Ubuntu
Uninstall starts by detecting Deb vs Snap, then removing only that install path.

What the Classic Uninstall Threads Actually Show

Early “How can I uninstall WPS Office for Linux?” reports describe Chinese beta builds installed from community write-ups, Software Center offering only Reinstall, and confusion between wps-office and older kingsoft-office package names. Later threads on Ubuntu 19.10/20.04 add new failure modes: apt-get purge appears to run, Snap remove says the snap is not installed, dpkg --get-selections | grep wps returns nothing—yet the application is still visible. Those cases usually mean the real package name was never the one typed, or the install was Snap under an unexpected snap name such as a branded 2019 snap.

Another pattern appears when someone installed with GDebi from an official-looking Deb, then tries only Snap remove commands, or the reverse. Uninstall is not one universal command—it is a detection problem first. If you skip detection, every “correct” command from a random answer can truthfully say the package is not installed while the app icon still launches.

Backup First: What Uninstall Does and Does Not Delete

Removing the application package deletes the program files managed by APT or Snap. It does not automatically mean every document in your home folder is wiped, but purge can clear package-shipped configuration, and optional manual cleanup can delete user config directories if you choose to. Before you proceed:

  • Copy important .docx, .xlsx, and .pptx files out of recent folders
  • Export templates you still need
  • Note whether documents also live in cloud storage or on a second disk
  • If you plan to reinstall later, write down whether you were on Deb or Snap so you do not recreate the same confusion

Detect What Is Actually Installed

dpkg -l wps-office kingsoft-office 2>/dev/null
snap list | grep -i wps
dpkg --get-selections | grep -i wps
command -v wps
command -v wps-office

Focus on wps-office, historical names such as kingsoft-office only when dpkg shows them, or Snap names returned by snap list. A line like libwps-0.4-4 can appear on systems that never installed WPS Office—it is a different library used by other software. Do not remove it because the letters “wps” appear.

Some uninstall attempts fail because APT says there is no apt package while also hinting a Snap exists—or because the Snap name is not literally wps-office. Always trust the live query on your machine over a blog’s assumed package name. If snap list shows something like a 2019-branded snap, that exact name is what you must remove.

Remove a Deb / APT Install

Standard removal:

sudo apt remove wps-office

Stronger cleanup of package-shipped configuration files:

sudo apt purge wps-office

Optional cleanup of unused dependencies:

sudo apt autoremove

Expected result: dpkg -l wps-office no longer shows an installed ii row. Older threads mention kingsoft-office for certain historical builds—only purge that name if your dpkg -l output shows it:

sudo apt purge kingsoft-office

If apt-get purge fails in a way you cannot reproduce from the error text alone, low-level cleanup is the community fallback:

sudo dpkg --purge wps-office

Remove a Snap Install

snap list | grep -i wps
sudo snap remove wps-office

If removal says the snap is not installed, list snaps again and copy the exact name. Support answers have shown alternate names such as multilanguage snaps or older branded snap names. Use the name your system prints:

sudo snap remove EXACT-NAME-FROM-SNAP-LIST

Expected result: the snap disappears from snap list. Icons may need a logout or session restart to clear. Do not assume APT purge will remove a Snap—those tools manage different packaging worlds.

Worked Example: Commands That Look Successful but Miss the App

Imagine this sequence, which mirrors real uninstall threads:

dpkg --get-selections | grep wps-office
# no output
sudo snap remove wps-office
# error: snap "wps-office" is not installed
sudo apt-get purge kingsoft-office
# Unable to locate package kingsoft-office

None of those results prove the computer is clean. They only prove those exact names are absent. Next:

snap list | grep -i wps
dpkg -l | grep -iE "wps|kingsoft"
ls /var/lib/snapd/snaps 2>/dev/null | grep -i wps

If snap list shows a differently named snap, remove that name. If dpkg -l shows wps-office with a weird status character instead of a clean absence, use APT/dpkg repair and purge on that package. If both are empty but a .desktop file remains in ~/.local/share/applications, delete only the leftover launcher file after you confirm no binary remains.

When Software Center Cannot Remove It

If Software Center only offers Reinstall, switch to the terminal detection steps above. The GUI store often mishandles channel confusion between Deb and Snap, and it may keep showing an icon for a package that APT no longer tracks. The terminal queries are the source of truth. After a successful terminal remove, reopen Software / Snap Store only to confirm the entry is gone—not as your first tool.

Broken Package States During Uninstall

If APT claims the package needs to be reinstalled but no archive exists—common after architecture mistakes or interrupted installs—you may need a more aggressive dpkg removal after backups:

sudo dpkg --remove --force-remove-reinstreq wps-office

Use this only when normal apt remove fails and dpkg reports a broken state. Then run:

sudo apt --fix-broken install
sudo dpkg --configure -a

Do not loop force flags on healthy packages. The goal is to leave APT consistent, not to delete as aggressively as possible.

Optional Residual Cleanup (Last)

Only after the package is gone, inspect leftover user directories if search still finds WPS:

ls -ld ~/.config/*wps* ~/.local/share/*wps* 2>/dev/null
find ~/.local/share/applications -iname "*wps*" 2>/dev/null

Delete only folders you recognize as WPS user data after backups. Avoid recursive deletes of broad home paths. Leftover .desktop files can keep menu entries alive even when the binary is gone—removing those stubs is safer than wiping entire config trees blindly.

Verify Removal

dpkg -l wps-office
snap list | grep -i wps
command -v wps
command -v wps-office

Expected result: package queries are empty/not installed, and previous launch commands are not found. Log out and back in if a menu icon remains, then re-check. If an icon still launches something, you likely still have the other channel installed.

Reinstall Notes After a Clean Removal

If you remove WPS because of Snap confinement problems on a second disk, reinstall with the official Deb from the WPS Linux page rather than immediately returning to the same Snap. If you remove it because of a broken Deb dependency state, download a current official Deb and use APT’s local install form instead of resurrecting an old cached Deb from Downloads.

Safety Notes Before Force Flags

Force-remove and force-reinstreq options exist because Ubuntu users do get stuck with half-installed packages. They are still sharp tools. Take a moment to copy important documents, close Writer/Spreadsheets/Presentation if they are running, and paste terminal output into a note before you escalate. Most uninstalls never need force flags—exact package-name detection solves more cases than aggressive dpkg options. When in doubt, stop after a failed command and re-run the detection block instead of stacking more force switches.

FAQ

Does uninstall delete my documents?

Usually not your Documents files, but purge can remove package configs and manual cleanup can remove user settings. Back up first.

Remove or purge?

Use remove for a normal uninstall; use purge when you also want package-shipped configuration files cleared.

Why did someone tell me to remove libwps?

That library can exist without WPS Office. Removing it does not reliably uninstall WPS and may affect other software.

APT says no package but the icon remains

Check Snap list for an unexpected snap name, remove that exact snap, then refresh your desktop session.

Can I uninstall from Windows Subsystem for Linux the same way?

Only if you installed the Linux package inside that environment. WSL uninstall of a Linux Deb/Snap is unrelated to uninstalling Windows WPS.

I removed WPS and apt still mentions it during other installs

Run dpkg -l wps-office and sudo dpkg --configure -a. A half-removed package can block unrelated APT operations until the database is consistent again.

Free Office Download

WPS WriterWPS PresentationWPS SpreadsheetWPS PDF
  • Use Word, Excel, and PPT for FREE, No Ads.

  • Edit PDF files with the powerful PDF toolkit.

  • Microsoft-like interface. Easy to learn. 100% Compatibility.

  • Boost your productivity with WPS's abundant free Word, Excel, PPT, and CV templates.

100% secure
Algirdas Jasaitis

15 years of office industry experience, tech lover and copywriter. Follow me for product reviews, comparisons, and recommendations for new apps and software.