1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
$Id$
The full application can be installed using the setup script:
python3 setup.py install
Alternatively, you can build Debian packages using the following command:
dpkg-buildpackage -us -uc # The built packages are placed in the parent directory
cd ../
Then to install the GTK version:
sudo dpkg --install autokey-gtk_<version>.deb autokey-common_<version>.deb
Or the Qt version:
sudo dpkg --install autokey-qt_<version>.deb autokey-common_<version>.deb
After dpkg finished, run this to install any missing dependencies:
sudo apt install -f
|