Welcome! This repo provides everything you need to run ONLYOFFICE Desktop Editors on your machine using AppImage.
ONLYOFFICE Desktop Editors is a free, open-source office suite pack that allows you to create, view and edit office docs stored on your PC without an Internet connection. Along with offline work, it’s possible to connect the application to the cloud for online document collaboration. It’s fully compatible with Microsoft Office formats (DOCX, XLSX, PPTX) and provides a complete set of tools for all your document needs.
The suite includes:
- ✍️ Document Editor: For creating and formatting text documents of any complexity.
- 📊 Spreadsheet Editor: For managing and analyzing data with powerful tools, formulas, and charts.
- 🖥️ Presentation Editor: For designing stunning, professional presentations with a variety of creative tools.
- 📝 Form Creator: For building and filling out complex, fillable PDF forms.
- ✂️ PDF Editor: For viewing, annotating, and converting your PDF files.
- 🖼️ Diagram Viewer: For viewing diagrams and flowcharts from Visio and other popular formats.
Connect any AI model (local or cloud-based) for tasks like chatbot requests, translation, OCR, etc. Use AI agents to generate new files, list folder contents, preview file details without opening them in the editor, auto-fill forms with provided data, etc. More info about AI tools
Running the AppImage is a simple, three-step process that can be done entirely through the terminal.
Download the latest version from our official website using the wget command. This will save the file directly into your current directory.
$ wget https://download.onlyoffice.com/install/desktop/editors/linux/DesktopEditors-x86_64.AppImage
Before you can run the AppImage, you need to give the file permission to be executed. The chmod a+x command makes the file executable for all users on the system.
$ chmod a+x DesktopEditors-x86_64.AppImage
Now you can launch the application directly from your terminal. Just execute the file you downloaded.
$ ./DesktopEditors-x86_64.AppImage
Perfect! The ONLYOFFICE Desktop Editors suite will now start. You've done it! You can begin creating and editing your documents immediately.
If you prefer to build the AppImage from the source code yourself, follow these steps.
First, ensure you have the necessary tools to build the project. This command installs build-essential, git, and wget on Debian-based systems like Ubuntu.
sudo apt-get install --force-yes -yq \
build-essential \
git \
wget
Clone this repository to download the build scripts and configuration files to your local machine.
git clone https://github.com/ONLYOFFICE/appimage-desktopeditors.git
Navigate into the project directory you just cloned and run the make command. This will clean any previous builds and then compile the new AppImage.
cd appimage-desktopeditors
make clean && make
Once the process is complete, the compiled AppImage will be available in the project folder, ready to run.
- Official website: Click here to learn more about ONLYOFFICE Desktop Editors.
- Main GitHub repository: Check out the source code for the complete project information.
- Help Center (Tutorials): Learn how to work with the app.
- 🐞 Found a bug? Please report it by creating an issue here.
- ❓ Have a question? Ask our community and developers on the ONLYOFFICE Forum.
- 💡 Want to suggest a feature? Share your ideas on our feedback platform.
- 🧑💻 Need help for developers? Check our API documentation.