logo
search
list

Table of Content

Repository Lookup vs Local Deb File
How Ask Ubuntu Dependency Threads Connect to APT
Why Prefer APT Over Bare dpkg
Prepare Architecture and Indexes
Download the Official Deb, Then Hand It to APT
Step-by-Step APT Session You Can Copy
Repair Unmet Dependencies Without Losing the Package
Verify Launchers After APT Finishes
Updating Later Still Uses Local APT Installs
Common APT Error Texts and What They Mean
APT vs Snap vs Flatpak (Decision Notes)
APT-Specific Pitfalls
FAQ
Free Office Download

How to Install WPS Office Using APT on Ubuntu

Posted by Algirdas Jasaitis

calendar

2026-07-24

views

870

likes

4

You can install WPS Office using APT on Ubuntu—but only by pointing APT at a local Deb file you downloaded from the official WPS Linux page. The vendor page publishes Deb and Rpm packages. It does not document an official WPS APT repository or PPA that makes sudo apt install wps-office resolve from Ubuntu’s default archives. When people say “install with APT,” they often mean the local-file form that still uses the APT tool.

Correct pattern: download the Deb, then run sudo apt install ./wps-office_VERSION_amd64.deb. Wrong patterns: repository lookup with no providing repo, adding an unverified PPA, or pasting expired direct links. Success means APT configures wps-office and the suite launches on a graphical desktop.

Install WPS Office using APT with a local Deb
APT installs the official local .deb—it is not the same as an official WPS repository.

Repository Lookup vs Local Deb File

FormExampleWhat happens for WPS
Repository lookupsudo apt install wps-officeUsually “Unable to locate package” on stock Ubuntu
Local filesudo apt install ./wps-office_12.1.0.xxxxx_amd64.debSupported after downloading the official Deb

That table is the entire point of this keyword. APT is still the right tool; the argument must be a path to the Deb. Community update answers that mention sudo apt install ./package_name.deb after downloading a package are describing this same local-file mechanism—not a secret Ubuntu archive entry.

How Ask Ubuntu Dependency Threads Connect to APT

Search results for WPS install failures on Ubuntu repeatedly show the same stderr shape: dpkg: dependency problems prevent configuration of wps-office, followed by a named library, followed by Errors were encountered while processing: wps-office. When the user then runs the classic fix-install command, APT may schedule WPS for removal. That is why this article insists on APT’s local install form from the start: you want dependency resolution and package configuration in one deliberate transaction whenever Ubuntu’s archives can satisfy the Depends line.

Historical posts about libpng12-0 on Ubuntu 16.10-era packages are useful as warnings, not as a permanent APT ritual. If a brand-new official Deb from today’s WPS Linux page still names a dependency, install what APT prints. If an ancient cached Deb from 2016 names libraries your release no longer carries, replace the Deb—do not rebuild an old Debian archive on a modern desktop just to honor a blog comment.

Why Prefer APT Over Bare dpkg

Ubuntu dependency threads show the same failure movie: dpkg -i unpacks WPS, prints unmet dependencies such as a missing library, then apt-get install -f offers to remove the broken package. Beginners who answer “Y” watch the suite disappear and think APT “rejected” WPS. APT’s local install form tries to fetch missing dependencies from Ubuntu repositories during the same transaction, which is why it is the preferred command once you have the official Deb.

cd ~/Downloads
sudo apt update
sudo apt install ./wps-office_12.1.0.xxxxx_amd64.deb

Prepare Architecture and Indexes

uname -m
dpkg --print-architecture
sudo apt update

Match the Deb architecture to your system. Installing i386 on an amd64 machine is a well-documented way to create dependency dead-ends that later block cleanup and produce “needs to be reinstalled, but I can’t find an archive for it.” Kubuntu reports that mention dependency failures after chasing libpng12-0 sometimes also involve architecture confusion—fix architecture before you chase obsolete libraries.

dpkg-deb -I ./wps-office_12.1.0.xxxxx_amd64.deb | grep -E 'Package|Version|Architecture|Depends'

Download the Official Deb, Then Hand It to APT

Get the Deb Package from wps.com/office/linux. Prefer that page over outdated community mirrors and over multi-year-old direct wget recipes. Note the exact filename:

ls -lh ~/Downloads/wps-office*.deb

Then install with the local path form shown earlier. Expected result: APT installs wps-office and any resolvable dependencies without leaving the package half-configured. Keep the Deb file until you have verified launch—you may need the same file to repair a interrupted configuration.

Step-by-Step APT Session You Can Copy

Use this as a single sitting checklist on a graphical Ubuntu desktop:

uname -m && dpkg --print-architecture
sudo apt update
cd ~/Downloads
ls -lh wps-office*.deb
dpkg-deb -I ./wps-office_REPLACE_ME_amd64.deb | grep -E "Package|Version|Architecture"
sudo apt install ./wps-office_REPLACE_ME_amd64.deb
dpkg -l wps-office
dpkg -L wps-office | grep /usr/bin/

Replace REPLACE_ME with the real version string from ls. If the install pauses on a dependency question, read it. If it completes cleanly, launch from the menu. If it fails, capture the full terminal output before trying unrelated Snap or Flatpak advice.

Repair Unmet Dependencies Without Losing the Package

If configuration fails, start with:

sudo apt --fix-broken install
sudo dpkg --configure -a
dpkg -l wps-office

Read the exact missing package names. On older WPS builds, users historically saw obsolete libraries such as libpng12-0 that newer Ubuntu releases no longer ship. Those Ask Ubuntu workarounds were version-era specific. Treating them as a universal APT requirement for every Ubuntu release today is how people accumulate random Debs from Debian Jessie mirrors. Prefer a current official Deb from the WPS Linux page.

If APT proposes removing wps-office to fix the system, answer carefully. Removal is not the same as a successful install. Abort, inspect the dependency, and only continue with a plan that ends in a configured package—not an empty system.

Verify Launchers After APT Finishes

dpkg -L wps-office | grep /usr/bin/
command -v wps
dpkg -l wps-office

Launcher names are build-dependent. Confirm with dpkg -L. Launch only from a graphical desktop session. Open a sample Office file and confirm save works. If you see formula-symbol font warnings, handle fonts as a separate follow-up; they do not mean APT failed.

Updating Later Still Uses Local APT Installs

Because the official Deb flow does not add a WPS repository, future upgrades usually mean downloading a newer Deb and running sudo apt install ./newer-file.deb again—not expecting apt upgrade alone to notice WPS. That is also why “update without reinstalling” threads resolve to installing a newer local Deb rather than a magical repository sync.

Common APT Error Texts and What They Mean

  • Unable to locate package wps-office — repository lookup with no providing repo; switch to ./file.deb.
  • dependency problems prevent configuration — Deb unpacked but Depends not satisfied; use APT fix or a newer official Deb.
  • The following packages will be REMOVED: wps-office during a fix operation — APT is offering to delete the broken package; abort unless you intend to uninstall.
  • package needs to be reinstalled, but I can’t find an archive for it — often a mismatched or removed Deb left the package database inconsistent; clean with dpkg/APT carefully, then install a matching official Deb.

Those strings appear across install, update, and uninstall threads. Learning them once makes APT troubleshooting faster than memorizing every WPS version number.

APT vs Snap vs Flatpak (Decision Notes)

APT local-Deb is the vendor-file path. Snap is an Ubuntu Store channel with confinement and refresh behavior. Flatpak appears in some community installs and has its own font dialog reports. If your search intent is specifically “using APT,” stay on Deb+APT and do not silently switch mid-article to Snap unless you are explaining a fallback. If Snap confinement later blocks second-disk files, that is a reason some users migrate from Snap to Deb—not a reason to pretend Snap is an APT install.

Keep the mental model simple: APT commands manage Deb packages; Snap commands manage snaps. Typing apt install wps-office will not install the Snap, and snap install will not register a Deb in dpkg -l. That separation is why detection commands appear in install, update, and uninstall articles alike.

APT-Specific Pitfalls

Unable to locate package wps-office

You used repository lookup. Download the official Deb and use ./file.deb.

Third-party PPA instructions

Skip unverified PPAs. They are not a substitute for the vendor Deb page and can leave you with untrusted package sources.

Wrong architecture

Inspect Deb metadata before installing. Fix mismatches before chasing dependency folklore.

Held or broken packages

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

GDebi vs APT

GDebi can install the same Deb graphically. This guide keeps one clear APT command-line path so errors stay readable in the terminal.

FAQ

Is “using APT” the same as an official APT repo?

No. Here APT installs a local Deb from WPS. That is not a WPS-maintained repository subscription.

Will apt upgrade update WPS later?

Not through the default Deb download flow. Install a newer official Deb the same way.

Is Snap the same as APT?

No. Snap is a different packaging system with different update and permission behavior.

Can I use gdebi?

You can, but this guide keeps one clear APT command-line path for troubleshooting.

Should I keep old libpng12 workarounds bookmarked?

Only as historical context for old WPS builds. Prefer a current official Deb on current Ubuntu.

Does sudo apt install ./file.deb work from any directory?

The path must resolve to the Deb. Using cd ~/Downloads plus ./exact-name.deb is the least error-prone pattern when the file lives in Downloads.

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.