12

On the KeePassX site there is only a Linux version 0.4.3 for download.

how can I install the latest version on Ubuntu?

The problem is, that Version 0.4 is basically unmaintained.

see: https://www.keepassx.org/dev/issues/78#change-186

rubo77
  • 34,024
  • 52
  • 172
  • 299

3 Answers3

12

I didn't have any trouble building from source:

# Assuming you have basic build tools already installed
sudo apt-get install cmake libgcrypt11-dev
git clone https://github.com/keepassx/keepassx.git
cd keepassx/
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
make 2>&1 | tee make.log
sudo make install 2>&1 | tee make-install.log
user148439
  • 136
  • 1
  • 3
9

In this Related bug report: Please update KeePassX to v2.0 Alpha

The developer now offers a PPA with daily builds for those who would like to test it: https://launchpad.net/~keepassx/+archive/daily

rubo77
  • 34,024
  • 52
  • 172
  • 299
5

Just to simplify things. To install from the repository robo77 mentioned:

sudo apt-add-repository ppa:keepassx/daily
sudo apt-get update
sudo apt-get install keepassx