HOW-TO:Install Kodi on Raspberry Pi: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
(12 intermediate revisions by 6 users not shown)
Line 2: Line 2:
The basic hardware you will need is  
The basic hardware you will need is  
* the R-Pi board itself
* the R-Pi board itself
* a power supply (Micro-USB, 5V, 1200 mA)
* a power supply (Micro-USB, 5V, upto 2500 mA)
* a SDHC memory card to install the software. (Because video decoding is more resource-intensive than many other operations, it may be more important to have a fast/high quality memory card for Kodi than for other uses.)
* a (micro)SDHC memory card to install the software. (Because video decoding is more resource-intensive than many other operations, it may be more important to have a fast/high quality memory card for Kodi than for other uses.)


:''See also: [[Raspberry Pi FAQ]]''
:''See also: [[Raspberry Pi FAQ]]''
Line 11: Line 11:
<section begin="install"/>
<section begin="install"/>
;Easy / Kodi centric distributions
;Easy / Kodi centric distributions
* '''[[LibreELEC]] -''' [https://libreelec.tv/download-temp/ Download] • [http://wiki.libreelec.tv Wiki] • [http://forum.libreelec.tv Forum]
* '''[[LibreELEC]] -''' [https://libreelec.tv/downloads/ Download] • [https://wiki.libreelec.tv Wiki] • [http://forum.libreelec.tv Forum]
 
* '''[[OpenELEC]] -''' [http://wiki.openelec.tv/index.php?title=Installing_OpenELEC_on_Raspberry_Pi Installing] • [http://wiki.openelec.tv/index.php?title=Raspberry_Pi_FAQ FAQ] • [http://openelec.tv/forum/124-raspberry-pi Help forum]


* '''[[OSMC]] -''' [https://osmc.tv/ Home] [https://osmc.tv/download/ Installing] • [https://osmc.tv/wiki Wiki] • [https://discourse.osmc.tv Support Forum]  
* '''[[OSMC]] -''' [https://osmc.tv/ Home] [https://osmc.tv/download/ Installing] • [https://osmc.tv/wiki Wiki] • [https://discourse.osmc.tv Support Forum]  
Line 21: Line 19:


;Advanced / can be used with Kodi
;Advanced / can be used with Kodi
* '''Raspbian -''' Up-to-date versions '''(Currently Krypton 17.1)''' of Kodi are now on the default Raspbian repositories. See '''[[HOW-TO:Install Kodi on Raspberry Pi#Raspbian|full guide here]]'''.  
* '''Raspbian -''' Up-to-date versions '''(Currently Krypton 17.3)''' of Kodi are now on the default Raspbian repositories. See '''[[HOW-TO:Install Kodi on Raspberry Pi#Raspbian|full guide here]]'''.  


* '''CarPC -''' [http://www.engineering-diy.blogspot.ro/2015/01/raspberrypi-carpc-tutorial.html Guide]
* '''CarPC -''' [http://www.engineering-diy.blogspot.ro/2015/01/raspberrypi-carpc-tutorial.html Guide]
Line 30: Line 28:


* '''Batocera Linux -''' [https://batocera-linux.xorhub.com/#learn Learn More]
* '''Batocera Linux -''' [https://batocera-linux.xorhub.com/#learn Learn More]
* '''TriPi -''' '''''(no longer maintained - Kodi outdated)''''' Kodi, RetroPie, and a Rapbian desktop environment, in all one image with full Xbox360 controller support. (Xbox One controllers not supported yet) [https://tripi.junaos.com Guide]


* '''Arch Linux ARM -''' [http://archlinuxarm.org/platforms/armv7/broadcom/raspberry-pi-2 RPi2] • [http://archlinuxarm.org/platforms/armv6/raspberry-pi RPi1]
* '''Arch Linux ARM -''' [http://archlinuxarm.org/platforms/armv7/broadcom/raspberry-pi-2 RPi2] • [http://archlinuxarm.org/platforms/armv6/raspberry-pi RPi1]


* '''[[Buildroot]]''' - For experimented users only !
* '''[[Buildroot]]''' - For experienced users only !
<section end="install"/>
<section end="install"/>


Line 44: Line 40:
{{editor note|We need to expand on this section, but here are the basic commands if you are familiar with the command-line:}}
{{editor note|We need to expand on this section, but here are the basic commands if you are familiar with the command-line:}}


'''(Current Version - 17.1)'''
'''(Current Version - 17.3)'''


<pre>
<pre>
Line 58: Line 54:
<pre>
<pre>
sudo apt-get update
sudo apt-get update
sudo apt-get install PACKAGENAME
sudo apt-get install PACKAGENAMEHERE
</pre>
</pre>
but replace PACKAGENAMEHERE with the PVR addon required.
but replace '''PACKAGENAMEHERE''' with the PVR addon required.
<pre>example: sudo apt-get install kodi-pvr-hts</pre>
<pre>example: sudo apt-get install kodi-pvr-hts</pre>
The PVR client add-on should now be installed. If Kodi was already running, restart it to load the add-on.
The PVR client add-on should now be installed. If Kodi was already running, restart it to load the add-on.


=== RetroPie ===
=== RetroPie ===
Here's a [https://www.youtube.com/watch?v=MyeCQS7ITnU youtube guide]:<br />
Here's a [https://www.youtube.com/watch?v=MyeCQS7ITnU youtube guide]:
 
{{#widget:YouTube|id=MyeCQS7ITnU}}
{{#widget:YouTube|id=MyeCQS7ITnU}}


== Compiling Kodi ==
== Compiling Kodi ==
Notes for advanced users who wish to try and build Kodi from source code.
Notes for advanced users who wish to try and build Kodi from source code.
* Various good notes mentioned here: https://github.com/xbmc/xbmc/blob/master/docs/README.raspberrypi
* Various good notes mentioned here: https://github.com/xbmc/xbmc/blob/master/docs/README.RaspberryPi.md


{{updated|16}}
{{updated|18}}


[[Category:Manual]]
[[Category:Manual]]

Revision as of 20:52, 28 January 2019

Home icon grey.png   ▶ Raspberry Pi ▶ HOW-TO:Install Kodi on Raspberry Pi

The basic hardware you will need is

  • the R-Pi board itself
  • a power supply (Micro-USB, 5V, upto 2500 mA)
  • a (micro)SDHC memory card to install the software. (Because video decoding is more resource-intensive than many other operations, it may be more important to have a fast/high quality memory card for Kodi than for other uses.)
See also: Raspberry Pi FAQ

Basic options

Easy / Kodi centric distributions


Advanced / can be used with Kodi
  • Raspbian - Up-to-date versions (Currently Krypton 17.3) of Kodi are now on the default Raspbian repositories. See full guide here.


Specific install guides

For installs that don't directly include and/or boot into Kodi automatically.

Raspbian

Editor note: We need to expand on this section, but here are the basic commands if you are familiar with the command-line:

(Current Version - 17.3)

sudo apt-get update
sudo apt-get install kodi
Alternative source
  • Pplware has a build of 17.1 for Raspbian, see here for a guide and detailed instructions on how to set up Kodi for Raspbian
PVR Addons
  • PVR Addons can be installed directly from the command line:
sudo apt-get update
sudo apt-get install PACKAGENAMEHERE

but replace PACKAGENAMEHERE with the PVR addon required.

example: sudo apt-get install kodi-pvr-hts

The PVR client add-on should now be installed. If Kodi was already running, restart it to load the add-on.

RetroPie

Here's a youtube guide:

Compiling Kodi

Notes for advanced users who wish to try and build Kodi from source code.