Linux Lite Forums

Software - Support => Installing Software => Topic started by: Snubbi on August 25, 2021, 07:33:01 AM

Title: [solved] Install WPS Office
Post by: Snubbi on August 25, 2021, 07:33:01 AM
What is the best way to install WPS Office on Linux Lite?
Title: Re: [solved] Install WPS Office
Post by: Jerry on August 25, 2021, 06:30:26 PM
Do one command in a Terminal at a time:

Code: [Select]
sudo apt-get purge libreoffice*
rm -rf ~/.local/share/applications/libreoffice*
sudo rm -rf /etc/skel/.local/share/applications/libreoffice*
wget https://wdl1.pcfg.cache.wpscdn.com/wpsdl/wpsoffice/download/linux/10702/wps-office_11.1.0.10702.XA_amd64.deb
sudo dpkg -i wps-office_11.1.0.10702.XA_amd64.deb

Download link - https://linux.wps.com/

For support for their actual software, please visit their site.
Title: Re: [solved] Install WPS Office
Post by: Moltke on August 25, 2021, 07:12:28 PM
Do one command in a Terminal at a time:

Code: [Select]
sudo apt-get purge libreoffice*
rm -rf ~/.local/share/applications/libreoffice*
sudo rm -rf /etc/skel/.local/share/applications/libreoffice*
wget https://wdl1.pcfg.cache.wpscdn.com/wpsdl/wpsoffice/download/linux/10702/wps-office_11.1.0.10702.XA_amd64.deb
sudo dpkg -i wps-office_11.1.0.10702.XA_amd64.deb

Download link - https://linux.wps.com/

For support for their actual software, please visit their site.

I'd only like to suggest that instead of running sudo dpkg -i to run
Code: [Select]
sudo apt install ./wps-office_11.1.0.10702.XA_amd64.deb since apt will take care of downloading and installing any missing dependencies, whereas dpkg will not.
Title: Re: [solved] Install WPS Office
Post by: Snubbi on August 26, 2021, 01:23:49 AM
Thanks