I am trying to install MS Office 2013 on my ubuntu 16.04 laptop. I have been searching all over the web and haven't found anything useful. Please help!
-
You might want to consider LibreOffice, which is a very capable office suite. – edwinksl Jun 20 '16 at 14:48
-
1If you must have Office 2013 for office or school "total compatibility" you might consider installing Windows as a second OS on this laptop. Other wise use LibreOffice and save documents in MS Office format choosing one of the older MS Office versions. – pfeiffep Jun 20 '16 at 15:21
-
Libreoffice can not completely replace MS Office. I have done analysis reports on excel and despite being a huge advocate of open source software, I can not recommend LIbreoffice for 'serious' users. – Anurag Priyadarshi Aug 16 '16 at 19:00
-
@AnuragPriyadarshi That may be true, but you should most certainly stop using Excel for analysis of any kind. It's a question of 'when', not 'if' , that either Excel bugs or collapses in formula propagation will make your output incorrect. – Carl Witthoft Sep 14 '16 at 14:35
-
@Carl . our comments are off-topic. The OP doesn't ask for a comparison. I was responding to an earlier comment which proposed considering LibreOffice. – Anurag Priyadarshi Sep 14 '16 at 18:49
-
Use a program called PlayOnLinux https://www.playonlinux.com/en/supported_apps-3-0.html – Jun 20 '16 at 14:46
3 Answers
WPS Office looks just like MS Office. And it works fine in Ubuntu.
Get the deb package from here: http://wps-community.org/. Then open a Terminal window and type: sudo apt-get install gdebi
. After gdebi is installed, close the Terminal, right-click on wps office deb file and choose open with gdebi. Wait for the installation to finish and that's it. And yes, it is free for linux, despite of what some 'wiseshots' may think.

- 2,584
-
-
Use the [edit] button to add this into your answer to make it easier to find, please. You have a good answer, but it's in the wrong place. – Kaz Wolfe Jun 21 '16 at 21:27
Contrary to what answers here say, you cannot get anything above Office 2010 to run. (Information from personal experience and research a few months ago, so something may have changed.)
It just requires too much for WINE (PlayOnLinux is just a wrapper for WINE) to handle, and will crash before launch.
Like others have suggested, you can use Office Online, but that doesn't work if you use an offline key. Your only options in this are either using 2010 or trying out Open Office or Libre Office.

- 14,809

- 19,395
- 12
- 50
- 65
-
3According to one user, Word and Excel 2013 are working fine in playonlinux, but "rendering of windows, right screen size and minimize, maximize is crap, slow response of UI in general" are issues. But they posted an update that supposedly fixes many of them. https://www.reddit.com/r/linux/comments/3ukrfh/microsoft_office_2013_on_linux_using_playonlinux/ – Nick Weinberg Jun 20 '16 at 15:25
-
@Zacharee1 a more complicated but realistic option is to install Windows as a second OS – pfeiffep Jun 20 '16 at 15:26
-
@NickWeinberg how come I never found that? Would've been really handy. – TheWanderer Jun 20 '16 at 16:18
-
This is not true. You can install Microsoft Office 2010 on Ubuntu using PlayOnLinux. But only the 32-bits version of MS Office works. – Ricardo Cruz Mar 18 '17 at 18:57
-
-
@Zacharee1 I read you too fast, sorry. I stand corrected. Though many people have recently reported MS Office 2013 to work, but it's troublesome (I managed to install it after a lot of pain, but could not overcome the black window while running). – Ricardo Cruz Mar 18 '17 at 22:39
You can't. MS Office only runs on Windows (and Mac OS).
You could try running it on WINE, but no guarantees.
WINE stands for Wine Is Not an Emulator
It is a compatibility layer that allows running Win32 apps on Linux.
However, it is FAR from perfect. Many applications will will simply crash during install or on launch.
You can install wine with:
sudo apt-get update
sudo apt-get install wine
Then you can try installing office by double-clicking the setup EXE.
It will probably crash during install.
An alternative is Office Online.

- 14,809