On Tue 12 Jul 2022 at 21:48:08 (-0500), Igor Korot wrote: > igor@debian:~/dbhandler/Debug$ ls -la /usr/local/lib/ > [ … ] > drwxr-xr-x 3 root root 4096 Jul 9 16:52 python3.9
> 2. There is python 3.9 folder there > I now I didn't install anything python specific and so the box > should contain only the default python implementation > > Is there a way to find what this python folder about? $ grep local/lib/python /var/lib/dpkg/info/* will give you the name of the package that's creating this. /usr/share/doc/python3.9-minimal/README.Debian.gz will tell you about this package. Cheers, David.