Tails - The "python3-tk" package has no installation candidate

I am currently experimenting with various Linux distributions, and I am trying to run some of my applications on the latest Tails distribution. For this, I need the tkinter library for Python3.

Unfortunately, importing tkinter in python3 does not work and trying to install it via

sudo apt-get install python3-tk

gives the following result:

Reading package lists... Done
Building dependecy tree
Reading state information... Done
Package python3-tk is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: package 'python3-tk' has no installation candidate

I would really appreciate any advice that would help me install tkinter, or at least run my application (perhaps by including the tkinter lib project in the project)

+4
source share
1 answer

Try entering them:

sudo apt-get update
sudo apt-get install python3-tk
+8
source

All Articles