pip не устанавливает Pygame и выдает ошибку - PullRequest
0 голосов
/ 17 апреля 2020

характеристики: Кали с python 3.8.1

Я разработал игру, которая требует пигмеев. поэтому, как обычно, для загрузки и установки я использовал '' '$ pip install pygame' '', и он вернул сообщение об ошибке

Collecting pygame
  Using cached pygame-1.9.6.tar.gz (3.2 MB)
    ERROR: Command errored out with exit status 1:
     command: /home/mohit/Projects/python/games/env/tetris_env/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-uorpw1u9/pygame/setup.py'"'"'; __file__='"'"'/tmp/pip-install-uorpw1u9/pygame/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-uorpw1u9/pygame/pip-egg-info
         cwd: /tmp/pip-install-uorpw1u9/pygame/
    Complete output (18 lines):


    WARNING, No "Setup" File Exists, Running "buildconfig/config.py"
    Using UNIX configuration...


    Hunting dependencies...
    SDL     : found 1.2.15
    FONT    : not found
    IMAGE   : not found
    MIXER   : not found
    PNG     : found
    JPEG    : not found
    SCRAP   : found
    PORTMIDI: not found
    PORTTIME: not found
    FREETYPE: found 23.1.17
    Missing dependencies
    ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
'''
now I have some questions:
i) How can I install pygame using libsdl. 
ii) installing pySDL2 would using ```pip install pySDL2``` will help ? 
iii) if I want to install SDL from source then how can I ?
iv) is installing SDL to global and virtualenv are different ?

Ответы [ 2 ]

0 голосов
/ 02 мая 2020
$ sudo apt-get install python-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-ttf2.0-dev   libsdl1.2-dev libsmpeg-dev python-numpy subversion libportmidi-dev ffmpeg libswscale-dev libavformat-dev libavcodec-dev
0 голосов
/ 17 апреля 2020

Видимо, вам не хватает некоторых системных зависимостей. Попробуйте установить:

sudo apt-get install libfreetype6-dev

https://installlion.com/kali/kali/main/l/libfreetype6-dev/install/index.html

...