-
-
Save katiakweb/1b4092e36c734bdd09e7d9f0a77b8b85 to your computer and use it in GitHub Desktop.
Install PDFEdit on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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