docs: getting started: add instructions on how to install pkg-config. See #137

This commit is contained in:
Christoph Reiter 2018-12-08 19:46:50 +01:00
parent 24a0f8cbbe
commit 91241aff52
1 changed files with 7 additions and 7 deletions

View File

@ -7,14 +7,14 @@ Installation:
* Python 2: ``pip2 install pycairo``
* Python 3: ``pip3 install pycairo``
Installing Pycairo requires cairo including its headers. Here are some
examples on how to install those for some platforms:
Installing Pycairo requires pkg-config and cairo including its headers. Here
are some examples on how to install those for some platforms:
* Ubuntu/Debian: ``sudo apt install libcairo2-dev``
* macOS/Homebrew: ``brew install cairo``
* Arch Linux: ``sudo pacman -S cairo``
* Fedora: ``sudo dnf install cairo-devel``
* openSUSE: ``sudo zypper install cairo-devel``
* Ubuntu/Debian: ``sudo apt install libcairo2-dev pkg-config``
* macOS/Homebrew: ``brew install cairo pkg-config``
* Arch Linux: ``sudo pacman -S cairo pkgconf``
* Fedora: ``sudo dnf install cairo-devel pkg-config``
* openSUSE: ``sudo zypper install cairo-devel pkg-config``
To verify that the installation works run the following Python code: