At first open terminal and update the system using the following command:
┌──(kali㉿kali)-[~]
└─$ sudo apt-get update
Get:1 http://ftp.harukasan.org/kali kali-rolling InRelease [30.6 kB]
Get:2 http://ftp.harukasan.org/kali kali-rolling/main Sources [14.4 MB]
Get:3 http://ftp.harukasan.org/kali kali-rolling/non-free Sources [126 kB]
Get:4 http://ftp.harukasan.org/kali kali-rolling/contrib Sources [69.3 kB]
Get:5 http://ftp.harukasan.org/kali kali-rolling/main amd64 Packages [17.9 MB]
Get:6 http://ftp.harukasan.org/kali kali-rolling/main amd64 Contents (deb) [40.9 MB]
Get:7 http://ftp.harukasan.org/kali kali-rolling/contrib amd64 Packages [115 kB]
Get:8 http://ftp.harukasan.org/kali kali-rolling/contrib amd64 Contents (deb) [153 kB]
Get:9 http://ftp.harukasan.org/kali kali-rolling/non-free amd64 Packages [210 kB]
Get:10 http://ftp.harukasan.org/kali kali-rolling/non-free amd64 Contents (deb) [988 kB]
Fetched 74.9 MB in 7min 1s (178 kB/s)
Reading package lists... Done
After this update command , execute the following command:
┌──(kali㉿kali)-[~]
└─$ sudo apt-get install qtcreator
and after that run the following command:
The 21.04 is based on Debian bullseye, which does not have qt5-default
package in the repository. I reported a bug to launchpad about missed qt5-default
package.
There is a way is to install all dependencies of qt5-defalt
package with
┌──(kali㉿kali)-[~]
└─$ sudo apt-get install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools
Also install qtcreator for designing the pyqt5 application using the following command:
┌──(kali㉿kali)-[~]
└─$ sudo apt-get install qtcreator
And run this last command:
┌──(kali㉿kali)-[~]
└─$ sudo apt-get install python3-pyqt5
Â
Comments