Skip to content

Instantly share code, notes, and snippets.

@katiakweb
Forked from bmaupin/pdfedit-docker.md
Created March 5, 2021 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katiakweb/1b4092e36c734bdd09e7d9f0a77b8b85 to your computer and use it in GitHub Desktop.
Save katiakweb/1b4092e36c734bdd09e7d9f0a77b8b85 to your computer and use it in GitHub Desktop.
Install PDFEdit on Ubuntu
sudo -v
# Setup
mkdir tmp
cd tmp
# Install PDFEdit and dependencies
wget http://mirrors.kernel.org/ubuntu/pool/main/l/lcms/liblcms1_1.19.dfsg-1ubuntu3_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/libm/libmng/libmng1_1.0.10-3_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/libp/libpng/libpng12-0_1.2.54-1ubuntu1_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/q/qt-x11-free/libqt3-mt_3.3.8-b-8ubuntu3_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/universe/p/pdfedit/pdfedit_0.4.5-2_amd64.deb
sudo dpkg -i *.deb
# Cleanup
rm *.deb
cd ..
rmdir tmp
# To uninstall:
# sudo apt autoremove liblcms1 libmng1 libpng12-0 libqt3-mt pdfedit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment