21

Months ago, I used to install Kazam 1.5.3 using these commands :

$ sudo add-apt-repository ppa:kazam-team/unstable-series
$ sudo apt-get update
$ sudo apt-get install kazam python3-cairo python3-xlib

Them main reason I want Kazam 1.5.3 exactly is because it comes with a webcam option.

But now, when I execute the previous commands, it only installs the previous version (Kazam 1.4), which doesn't come with a webcam option.

Is there a way to get the latest version?

Thanks

SmootQ
  • 539
  • 2
  • 6
  • 17

3 Answers3

43

Kazam is available in the official Ubuntu repositories, but it's an old version (1.4) and ppa:kazam-team/unstable-series has not been updated for 16.04 (and does not include debian patches).

You can install Kazam 1.5.4 from my own ppa (it provides the debian packages up to 21.04):

sudo apt-add-repository ppa:sylvain-pineau/kazam
sudo apt-get update
sudo apt-get install kazam 

enter image description here

3

cd to /etc/apt/sources.d/ open up the kazam.list file and make sure you change repo to devel.

/etc/apt/sources.list.d# ls
kazam-team-ubuntu-unstable-series-xenial.list  kazam-team-ubuntu-unstable-   series-xenial.list.save

/etc/apt/sources.list.d# cat kazam-team-ubuntu-unstable-series-xenial.list
deb http://ppa.launchpad.net/kazam-team/unstable-series/ubuntu devel main
storm
  • 4,973
simon
  • 31
1

Install using PIP/PIP3

pip install kazam==1.5.6 distutils-extra-python

These versions are available and has same features as 1.5.3

enter image description here

Googlian
  • 276
  • 2
  • 6
  • 1
    Question was how to install 1.5.3 how is this an answer to that? Add some more details it may make sense then. – David Nov 05 '22 at 08:53
  • WARNING Kazam - Failed to correctly detect operating system on Ubuntu 22.04.2 LTS + 6.2.9-060209-generic – Witold Kaczurba Apr 04 '23 at 17:09