How to Install the Wike Wikipedia Reader on Ubuntu 22.04 LTS
If you’ve ever found yourself scrolling through endless browser tabs just to read a single Wikipedia article, it’s time to give Wike a shot. The app keeps the content in a tidy desktop window and even works offline once the pages are cached.
Prerequisites
- Ubuntu 22.04 LTS (the “Jammy Jellyfish” release)
- A working internet connection for the first run
- Basic knowledge of terminal commands – I’ll keep it short.
I’ve seen people hit a wall when they try to install third‑party software on Ubuntu and end up with broken dependencies. That’s why we’ll check your system before we dive in.
Download the Latest Package
Open a terminal (Ctrl + Alt + T) and fetch the Debian package from the official release page:
wget https://github.com/yourrepo/wike/releases/download/v2.3.1/wike_2.3.1-ubuntu22.04.deb
Downloading directly from GitHub guarantees you’re getting an untampered file, and the .deb format is native to Ubuntu’s packaging system.
Install Dependencies
Wike relies on a few libraries that might not be present by default. Install them with:
sudo apt update && sudo apt install -y libwebkit2gtk-4.0-dev libappindicator3-dev
These libraries enable Wike’s embedded browser view and system tray icon support. Without them the app would crash on start.
Install Wike
sudo dpkg -i wike_2.3.1-ubuntu22.04.deb || sudo apt --fix-broken install
The dpkg command drops the package into place, while the fallback apt --fix-broken install resolves any missing dependencies that slipped through.
Launch and Configure
You can start Wike from the Activities overview or by typing:
wike
Once it’s open:
1. Sync for Offline Use – In the settings menu toggle “Download articles for offline reading.”
2. Set Default Language – Pick your preferred language so you don’t get stuck with the default English page every time.
I once tried to read a French article on a plane with no Wi‑Fi and Wike saved it instantly because I had that offline mode enabled.
Common Pitfalls & Fixes
| Symptom | Likely Cause | Quick Fix |
|---|---|---|
| App won’t launch, complains about GTK | Missing libgtk-3 | sudo apt install libgtk-3-0 |
| Articles fail to load | Outdated WebKit engine | Update via sudo apt upgrade libwebkit2gtk-4.0-dev |
| Tray icon missing | libappindicator3 not linked | Reinstall with sudo apt reinstall libappindicator3-dev |
Keep It Updated
When a new version drops, just repeat steps 1–3. Wike doesn’t ship an auto‑update feature, but the process is painless.
That’s it—no more endless tabs or awkward browser windows. Give your Wikipedia reading a desktop makeover with Wike and keep the knowledge in one place.