I found an old computer, installed ubuntu 10.04 LTS (others log) and I don’t know how to download PyGame there.

Closed due to the fact that the essence of the issue is incomprehensible to the participants of Kromster , aleksandr barakin , HamSter , iluxa1810 , Alex Nov 24 '16 at 7:22 .

Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .

  • The apt-get program downloads from the repository itself. the package is called python-pygame . - aleksandr barakin
  • Writes - 'E: Could not find the python-pygame package' - Valera1501
  • 2
    You probably have the wrong links to the repositories listed. in the /etc/apt/sources.list* files. instead of http://archive.ubuntu.com (and the like) there should be http://old-releases.ubuntu.com . after correction, it is necessary, of course, to get a list of packages: $ sudo apt-get update - aleksandr barakin
  • one
    tried Lubuntu? (For 15.10 minimum requirements: Pentium II, 128MB, 2GB). Otherwise, try to install miniconda for yourself, and everything else (including the python itself) already through conda - jfs

1 answer 1

You can install the python-pygame Ubuntu package if you change links to repositories as @alexander barakin suggested . Run as root:

 # sed -i 's/archive/old-releases/' /etc/apt/sources.list # apt-get update # apt-get install python-pygame -y