Can't install Python3 package in Debian 7

248

The problem seems to be the following line:

dpkg: warning: files list file for package 'python3.2-minimal' missing; assuming package has no files currently installed

Can you please run the following:

apt-get update
apt-get remove python3.*
apt-get install python3

This will remove all Python 3 Packages and then install Python 3 again. It seems your current install is slightly broken, as the python3.2 binary which should be in the (already installed) python3.2-minimal package cannot be found.

Share:
248
Nohr
Author by

Nohr

Updated on September 18, 2022

Comments

  • Nohr
    Nohr over 1 year

    Im working a project with two of my fellow students and we would like to be able to drag the cursor over a tilelist to select multiple tiles. We cant really find any function to do this, is it possible to do it some how?

    Best regards

    Thanks

  • Nohr
    Nohr about 11 years
    Perfecto, just what I need.
  • Alen Milakovic
    Alen Milakovic over 9 years
    apt-get purge python3.* might be better.