From ff7960be840248bec7f7f3e42fbb57d24781a649 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Mon, 6 Mar 2023 20:33:14 +0100 Subject: [PATCH 1/2] Docs: Update the Ubuntu prereq to build Kivy and its dependencies --- doc/sources/installation/installation-linux.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/sources/installation/installation-linux.rst b/doc/sources/installation/installation-linux.rst index 5e1379c32..6ce72be55 100644 --- a/doc/sources/installation/installation-linux.rst +++ b/doc/sources/installation/installation-linux.rst @@ -17,8 +17,8 @@ main :ref:`pip installation guide`, specific to Linux. Installing Python ^^^^^^^^^^^^^^^^^ -Python and python-pip, git and build tools are required to install Kivy. If you do not have these installed, -please install them before continuing: +Python and python-pip, git and build tools are required to build Kivy and its dependencies. +If you do not have these installed, please install them before continuing: Ubuntu ~~~~~~ @@ -28,6 +28,9 @@ Using apt:: sudo apt-get install -y \ python3-pip \ build-essential \ + autoconf \ + libtool \ + curl \ git \ python3 \ python3-dev \ From 6a292516045ddc7ca8ab050e1e25a21d9f909214 Mon Sep 17 00:00:00 2001 From: Akshay Arora Date: Thu, 9 Mar 2023 14:38:06 +0530 Subject: [PATCH 2/2] Add libxext-dev as a requirement for ubuntu build. --- doc/sources/installation/installation-linux.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/sources/installation/installation-linux.rst b/doc/sources/installation/installation-linux.rst index 6ce72be55..5b5e61731 100644 --- a/doc/sources/installation/installation-linux.rst +++ b/doc/sources/installation/installation-linux.rst @@ -30,6 +30,7 @@ Using apt:: build-essential \ autoconf \ libtool \ + libxext-dev \ curl \ git \ python3 \