0

规格:kali 与 python 3.8.1

我开发了一个需要 pygame 的游戏。所以像往常一样下载和安装我使用了'''$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 ?
4

2 回答 2

2
$ 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
于 2020-05-02T08:15:10.530 回答
0

显然您缺少一些系统依赖项。尝试安装:

sudo apt-get install libfreetype6-dev

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

于 2020-04-17T18:15:37.523 回答