Install Plex Server on Raspberry PI
Being one of most famous media server, Plex brings your media on a single app available for any device and from everywhere. Raspberry PI computer boards fits perfectly plex server needs and are a good option to run your server from your home
In this tutorial I’m going to show you how to install Plex server in your Raspberry PI.
Plex has a huge number of followers. It is really flexible and makes your media together, accessible in simple way from any device. Moreover, it allows you to reach a number of new services, so discovering web TVs, Shows, channels, podcasts and so on.
It also runs from NAS, but Raspberry PI boards can give great results as they have better performances of NAS from same price range.
In this tutorial I’m going to use a Raspberry PI 3 Model B+, but same procedure should work on other Raspberry PI computer boards.
What We Need
As usual, I suggest adding from now to your favourite ecommerce shopping chart all needed hardware, so that at the end you will be able to evaluate overall costs and decide if continuing with the project or removing them from shopping chart. So, hardware will be only:
- Raspberry PI (including proper power supply or using a smartphone micro usb charger with at least 3A)
- high speed micro SD card (at least 16 GB, at least class 10)
Check hardware prices with following links:
Step-by-Step Procedure
Install Operating System
Start preparing your OS. You can use Raspberry PI OS Lite (for a fast, headless OS) or Raspberry PI OS Desktop (in this case working from its internal terminal.
If not already done, make sure your OS is up to date. From terminal, use following command:
sudo apt update -y && sudo apt upgrade -y
Get Plex Server Installer
In this tutorial, I’m going to use official Plex installation procedure. I will copy latest installer link from browser and use this link with “wget” command directly from Raspberry PI. Of course, you can alternatively download the same installer in your local PC and transfer it to Raspberry PI with an sftp program (like Filezilla).
With your favourite browser, go to Plex Download page and make sure that Plex Media Server button is selected:

Open drill down menu under “Windows” to select “Linux” as your distribution:

Scroll down and click “Choose Distribution” button. It will open a new drill down menù. From here, identify Debian “ARMv7” distribution and right click from your mouse. From here, select “Copy Link Location”:

This will save installer link in your local clipboard. Back to Raspberry PI terminal, write “wget” and paste the copied link. You will have something like following:
wget https://downloads.plex.tv/plex-media-server-new/1.22.0.4163-d8c4875dd/debian/plexmediaserver_1.22.0.4163-d8c4875dd_armhf.deb
If this doesn’t works, you can also use my wget terminal command to get the Plex Server v.1.22 installer.
Install Plex Server
As said, previous command will download official Plex Installer, a “.deb” file in your current folder. Use dpkg with “-i” option (from sudo) to start installation (please replace “.deb” filename with the one you downloaded):
sudo dpkg -i plexmediaserver_1.22.0.4163-d8c4875dd_armhf.deb
Use your Raspberry PI’s IP address (followed by “:32400/web”) in your browser to start setup process (in following screens I’ll use “192.168.1.238” as this is my RPI address, so mu URL will be “http://192.168.1.238:32400/web”).
First screen warns that you are running Plex Server on a local host (not on Plex farm):

Use your Plex account or login with available services. A confirmation email could be sent to you from Plex.
Next screen starts showing briefly how Plex works. When ready, click “GOT IT!” button at bottom part of this page:

Next screen proposes Plex offers for paid accounts. You can both evaluate enhanced account or close with “X” button on top-right part of internal popup:

Next screen allows you to configure your server name and set if you want to allow remote access from outside home network. When finished, click “next”:

Following screen screen allows you to add your libraries. You can also add them later. When ready, click “Next”:

Following setup screen notifies you that you can enrich your plex experience with plex app universe (available from button). You can click Next:

Final screen allows you to select your media menù to show on sidebar (even if you will however able to reach all media). After choosing, scroll down and click “Finish Setup”:

You will be finally redirected to Plex Server home page:

More info on how to configure and use Plex Server can be found on official Plex Docs pages.
Enjoy!