From f1b412d9a628220b07cca8587fdb76b5d1eb7421 Mon Sep 17 00:00:00 2001 From: Dominik Lang Date: Mon, 14 May 2018 22:53:48 +0200 Subject: [PATCH] Docs: Fix examples PPA command; Cython for v1.10.0 - PPA examples package is named kivy-examples, not python-kivy-examples - Recommended Cython version for v1.10.0 is 0.25.2 as specified in setup.py & deps-cython.rst. 1.10.1 has not been released yet. --- .../installation/installation-linux.rst | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/sources/installation/installation-linux.rst b/doc/sources/installation/installation-linux.rst index c8c73b3c0..f0baebc35 100644 --- a/doc/sources/installation/installation-linux.rst +++ b/doc/sources/installation/installation-linux.rst @@ -29,7 +29,7 @@ Ubuntu / Kubuntu / Xubuntu / Lubuntu (Saucy and above) :Python3 - **python3-kivy**: $ sudo apt-get install python3-kivy :optionally the examples - **kivy-examples**: - $ sudo apt-get install python-kivy-examples + $ sudo apt-get install kivy-examples Debian (Jessie or newer) @@ -138,7 +138,7 @@ Kivy Cython 1.8 0.20.2 1.9 0.21.2 1.9.1 0.23 -1.10.1 0.25 +1.10.0 0.25.2 ======== ============= @@ -170,13 +170,13 @@ In the following command use "python" and "python-dev" for Python 2, or "python3 libavformat-dev \ libavcodec-dev \ zlib1g-dev - + # Install gstreamer for audio, video (optional) sudo apt-get install -y \ libgstreamer1.0 \ gstreamer1.0-plugins-base \ gstreamer1.0-plugins-good - + **Note:** Depending on your Linux version, you may receive error messages related to the "ffmpeg" package. In this scenario, use "libav-tools \" in place of "ffmpeg \" (above), or use a PPA (as shown below): @@ -196,13 +196,13 @@ Installation # Make sure Pip, Virtualenv and Setuptools are updated sudo pip install --upgrade pip virtualenv setuptools - + # Then create a virtualenv named "kivyinstall" by either: - + # 1. using the default interpreter virtualenv --no-site-packages kivyinstall - - # or 2. using a specific interpreter + + # or 2. using a specific interpreter # (this will use the interpreter in /usr/bin/python2.7) virtualenv --no-site-packages -p /usr/bin/python2.7 kivyinstall @@ -298,11 +298,11 @@ Installation sudo pip install --upgrade pip virtualenv setuptools # Then create a virtualenv named "kivyinstall" by either: - + # 1. using the default interpreter virtualenv --no-site-packages kivyinstall - - # or 2. using a specific interpreter + + # or 2. using a specific interpreter # (this will use the interpreter in /usr/bin/python2.7) virtualenv --no-site-packages -p /usr/bin/python2.7 kivyinstall