logo
search
list

Table of Content

Confirm Architecture Before You Download
Download the Official Deb Package
Install the Local Deb Package from the Terminal
Resolve Dependency Errors from the Exact Output
Launch WPS Office and Verify the Install
Update or Remove Without Changing the Main Method
Fix the Most Common Terminal Install Problems
FAQ

How to Install WPS Office via Terminal on Ubuntu

Posted by Algirdas Jasaitis

calendar

2026-07-24

views

870

likes

4

To install WPS Office via terminal on Ubuntu or another Debian-based system, download the official Deb package from the WPS Linux page, then install that local .deb file with APT. WPS Office is not installed by looking up a repository package name such as wps-office in Ubuntu’s default archives. A repository-style command like sudo apt install wps-office will fail unless that package already exists in a configured source.

Shortest path:

  1. Confirm your CPU architecture.

  2. Download the Deb package from the official WPS Linux page.

  3. Install the exact local filename with APT.

  4. Resolve any unmet dependencies APT reports.

  5. Launch WPS Office and verify it opens.

Success means the package finishes configuring, the WPS apps appear in your desktop menu, and the installed launchers start Writer or another component. If you hit an architecture mismatch, unmet dependencies, a missing command, a silent launch failure, or a font warning, use the troubleshooting section below.

Install WPS Office on Ubuntu via terminal using an official Deb package
Install WPS Office via terminal: match architecture, download the official Deb package, then install the local .deb with APT.
100% secure

Confirm Architecture Before You Download

Package architecture must match your system. Do not assume every Ubuntu machine can use the same Deb build.

Check your system:

uname -m
dpkg --print-architecture

Typical 64-bit Ubuntu PCs report x86_64 from uname -m and amd64 from dpkg --print-architecture.

Then download only a Deb package that the official WPS source currently offers for your machine. On the official Linux page, WPS publishes Deb Package and Rpm Package options for Linux distributions such as Ubuntu and Linux Mint. Before installing, inspect the file you actually received:

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

Replace wps-office_12.1.0.xxxxx_amd64.deb with the exact filename in your Downloads folder.

Expected result: Package: wps-office and an Architecture value that matches your system. If the official download does not provide a matching architecture for your device, stop. Do not force an incompatible Deb package onto ARM or another unsupported architecture.

Download the Official Deb Package

Use the vendor download page: WPS Office for Linux.

Choose Deb Package for Ubuntu, Linux Mint, Debian, and similar systems. Prefer this page over old community wget links, mirrors, or unofficial “WPS APT repository / PPA” instructions. Those community URLs often point to expired versioned files, and this guide does not treat third-party PPAs, Snap listings, or Flatpak listings as official WPS install channels unless WPS itself documents them.

After the download finishes, list the file and note the exact name:

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

Expected result: one Deb file whose name includes wps-office plus a version string. Use that exact name in the next commands. Avoid broad wildcards such as *.deb when more than one Deb file may exist in the folder.

Install the Local Deb Package from the Terminal

Move into the download directory and install the local file path, not a repository package name:

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

Again, replace the filename with your exact Deb name.

Important distinction:

  • Repository lookup form: sudo apt install package-name

  • Local file form: sudo apt install ./package-file.deb

The leading ./ tells APT you are installing a file on disk.

Expected result: APT plans to install wps-office, may also install dependencies available from Ubuntu repositories, and completes without leaving the package half-configured.

If you already used the lower-level installer:

sudo dpkg -i ./wps-office_12.1.0.xxxxx_amd64.deb

dpkg installs the package file itself but does not resolve missing dependencies. If it reports dependency problems, continue with the next section instead of forcing the package.

Resolve Dependency Errors from the Exact Output

If installation stops with unmet dependencies, start with APT’s non-destructive repair:

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

Expected result: APT installs the missing packages it can resolve, or prints the exact dependency names it cannot satisfy.

Then check package status:

dpkg -l wps-office

A configured install typically shows status ii for wps-office.

Do not install random libraries or fonts “just in case.” Read the error text first. If APT names a specific missing package and that package exists in your enabled Ubuntu repositories, install that named package, then retry the exact WPS Deb file. Add version notes only when the error itself requires a particular version. Avoid outdated community workarounds as your default path.

Launch WPS Office and Verify the Install

WPS Office is desktop GUI software. Launch it from a normal graphical session, not as a headless server workflow.

After installation, verify which launchers your build actually provides:

dpkg -L wps-office | grep -E '/usr/bin/|applications'
command -v wps
command -v et
command -v wpp

Executable names and install paths can vary by package build. Treat names such as wps, et, and wpp as build-dependent until dpkg -L or command -v confirms them on your system.

If those commands exist, start them from the terminal:

wps

Expected result: Writer opens in your desktop session. You can also search the application menu for “WPS” and open a sample .docx, .xlsx, or .pptx file to confirm editing works.

Update or Remove Without Changing the Main Method

To update later, download the newer official Deb from the same WPS Linux page and install the exact new filename with:

sudo apt install ./wps-office_NEWERVERSION_amd64.deb

To remove the suite:

sudo apt remove wps-office

Optional cleanup of unused dependencies:

sudo apt autoremove

Expected result: the package is removed and previously confirmed launchers are no longer found.

Fix the Most Common Terminal Install Problems

Package architecture does not match

Symptoms: architecture errors, or broken dependency state after installing the wrong Deb.

Check:

uname -m
dpkg --print-architecture
dpkg-deb -I ~/Downloads/wps-office_12.1.0.xxxxx_amd64.deb | grep Architecture

If they differ, remove the mismatched package:

sudo apt remove wps-office

Then download a matching official Deb. If none exists for your architecture, do not force another build.

Unmet dependencies

Symptoms: dpkg leaves wps-office unconfigured, or APT lists packages that “are not going to be installed.”

Repair in this order:

sudo apt --fix-broken install
sudo apt update
sudo apt install ./wps-office_12.1.0.xxxxx_amd64.deb

Install only the dependency names shown in the error when they are available from your repositories. If APT offers to remove wps-office to clear the conflict, that usually means the dependency cannot be satisfied yet; fix the named dependency or get a newer official Deb before choosing removal.

Command not found after install

Symptoms: the shell reports that a launcher command cannot be found.

Inspect the installed package first:

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

If the package is missing or half-installed, reinstall the exact official Deb with APT. If binaries exist under a path returned by dpkg -L, use that confirmed path or open a new terminal session and retry the verified command name.

WPS installs but does not open

Symptoms: menu entries appear, but the apps exit immediately or show no window.

Start from the terminal so error text is visible, using a launcher confirmed by dpkg -L. Then run:

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

Reinstall the current official Deb if the package is damaged. Keep this troubleshooting on a graphical desktop session.

Missing fonts or incomplete interface

Symptoms: a warning about missing fonts, broken symbols, or incomplete UI text.

Do not uninstall WPS first. Read the exact font or library name in the warning, then install only that component when it is available through Ubuntu packages and acceptable under your licensing needs. After installing the named font package, refresh the font cache if the package instructions require it, then relaunch the confirmed WPS command.

WPS Writer
WPS Presentation
WPS Spreadsheet
WPS PDF
Install and Use WPS Office on Linux for Free

FAQ

Can I install WPS Office with only sudo apt install wps-office?

Not on a default Ubuntu system. That form looks up a repository package name. For the official Deb download, use the local file form: sudo apt install ./exact-file-name.deb.

Should I add a WPS PPA or third-party repository?

No. This guide uses the Deb package from the official WPS Linux download page. Do not add unverified PPAs or custom repositories for this install.

Does this guide cover Windows or WSL?

No. It covers Ubuntu/Debian-style systems installing a Deb package in a normal Linux desktop environment.

How do I confirm the install succeeded?

dpkg -l wps-office shows the package as installed, dpkg -L wps-office lists the files for your build, and a confirmed launcher opens the WPS interface on your desktop.

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.