⚠️ Unofficial Builds - These are NOT official TeXstudio builds. This is an independent project providing custom builds with Qt6 and Poppler for modern Linux distributions. The official TeXstudio project does not endorse or support these builds.
For official builds, visit: https://www.texstudio.org/
Custom builds of TeXstudio with Qt6 and Poppler for modern Linux distributions.
The easiest way to install TeXstudio and keep it updated is via our APT repository. This method will automatically install all required dependencies (Qt6, Poppler, Hunspell, etc.).
echo "deb [trusted=yes] https://mlmateos.github.io/texstudio-qt6-builds/ pool/" | sudo tee /etc/apt/sources.list.d/texstudio.list
sudo apt update
sudo apt install texstudio
Note: This will automatically download and install all required dependencies, including:
texstudio --version
# Should show: TeXstudio 4.9.5 (4.9.5)
When a new version is released, simply run:
sudo apt update
sudo apt upgrade texstudio
If you prefer to download the .deb package directly:
texstudio-*-qt6-amd64.debsudo apt install ./texstudio-*-qt6-amd64.deb
Dependencies will be automatically resolved and installed.
For a portable version that works on any Linux distribution:
texstudio-*-qt6-x86_64.AppImage from Releaseschmod +x texstudio-*.AppImage
./texstudio-*.AppImage
If you want to compile TeXstudio yourself, this repository provides automated build scripts.
# Clone the repository
git clone https://github.com/mlmateos/texstudio-qt6-builds.git
cd texstudio-qt6-builds/scripts
install-texstudio-deps.sh - Install build dependenciesbuild-texstudio-appimage.sh - Build AppImagebuild-texstudio-deb.sh - Build .deb package# Install dependencies
./install-texstudio-deps.sh
# Build .deb package
./build-texstudio-deb.sh --clean --poppler --sign
# Or build AppImage
./build-texstudio-appimage.sh --clean --poppler --sign
# Build specific version
./build-texstudio-deb.sh --branch 4.9.5 --clean --poppler --sign
# Publish to GitHub Releases
./build-texstudio-deb.sh --clean --poppler --sign --publish
See --help for all available options.
This project is licensed under the MIT License.
TeXstudio itself is licensed under GPL-2.0+.
Issues and pull requests are welcome!
*Happy TeXing~/texstudio-qt6-builds 🎓