Add python to requiremens in README (fixes #1184)

This commit is contained in:
Dennis Felsing 2018-07-19 11:26:21 +02:00
parent e571dc8d93
commit 29f2f5e0e6

View file

@ -39,11 +39,11 @@ DDNet requires additional libraries, that are bundled for the most common platfo
You can install the required libraries on your system, `touch CMakeLists.txt` and CMake will use the system-wide libraries by default. You can install all required dependencies and CMake on Debian or Ubuntu like this:
sudo apt install cmake git libcurl4-openssl-dev libfreetype6-dev libglew-dev libogg-dev libopus-dev libopusfile-dev libpnglite-dev libsdl2-dev libwavpack-dev
sudo apt install cmake git libcurl4-openssl-dev libfreetype6-dev libglew-dev libogg-dev libopus-dev libopusfile-dev libpnglite-dev libsdl2-dev libwavpack-dev python
Or on Arch Linux like this (Arch Linux does not package `pnglite`, not even in AUR):
sudo pacman -S --needed cmake curl freetype2 git glew opusfile sdl2 wavpack
sudo pacman -S --needed cmake curl freetype2 git glew opusfile sdl2 wavpack python
If you have the libraries installed, but still want to use the bundled ones instead, you can do so by removing your build directory and re-running CMake with `-DPREFER_BUNDLED_LIBS=ON`, e.g. `cmake -DPREFER_BUNDLED_LIBS=ON ..`.