PyRadio pipx installation on Linux
April 23, 2026 ยท View on GitHub
Table of contents
- Preface
- Install a media player
- Get the installation script
- Debian and derivatives
- Fedora and derivatives
- openSUSE and derivatives
- PyRadio Cache
[ Return to PyRadio Build Instructions ]
Preface
This document will help you install PyRadio within a virtual environment using pipx.
In order to install PyRadio to your system you will:
- Install a media player
- Download the installation script
- Install the basic python system and PyRadio installation dependencies
- Choose the type of PyRadio installation
- Perform the installation
In order to decide which type of installation to perform, here are a couple of things you have to consider.
There are two installation types you can use for PyRadio:
-
Fully isolated installation
This type of installation will install all PyRadio dependencies inside a virtual environment.
The advantage is that the system's python installation is not cluttered with the package's dependencies.
The disadvantage is that installing the dependencies in a virtual environment may fail. -
System dependent installation
This type of installation requires that all PyRadio dependencies are installed outside the virtual environment used by PyRadio. All dependencies must be provided by the distribution (i.e. exist in the distribution repositories).
Install a media player
PyRadio relies on the existence of at least one of the following media players: mpv, mplayer or vlc.
Please install at least one of them beforehand:
# on Debian
sudo apt-get install -y [ mpv / mplayer / vlc ]
# on Fedora
sudo dnf install -y [ mpv / mplayer / vlc ]
# on openSUSE
sudo zypper install -y [ mpv / mplayer / vlc ]
Get the installation script
Open a terminal and execute:
cd
wget https://raw.githubusercontent.com/coderholic/pyradio/master/pyradio/install.py
or using curl:
cd
curl -L \
https://raw.githubusercontent.com/coderholic/pyradio/master/pyradio/install.py \
-o install.py
Please follow the instructions that match/suit your distribution.
Debian and derivatives
Note: The following instructions were tested on a freshly installed Debian 13.
Install the requirements for the installation script:
sudo apt-get install \
python3-full \
python3-pip \
python3-rich \
python3-requests \
python3-netifaces \
libpython3-all-dev
Then install pipx:
sudo apt-get install -y pipx
If that fails, execute:
python3 -m pip install pipx
Finally, execute:
python3 -m pipx ensurepath
and exit the terminal.
Fully isolated installation - Debian
Open a terminal and execute:
cd
python3 install.py -i
System dependent installation - Debian
Install dependencies:
sudo apt-get install -y \
python3-dnspython \
python3-psutil \
python3-netifaces \
python3-dateutil \
python3-charset-normalizer
Install PyRadio:
cd
python3 install.py
Fedora and derivatives
Note: The following instructions were tested on a freshly installed Fedora 43 Workstation.
Execute:
sudo dnf install -y \
python3-pip \
python3-wheel \
python3-rich \
python3-requests \
pipx
And
python3 -m pipx ensurepath
and exit the terminal.
Fully isolated installation - fedora
Open a terminal and execute:
sudo dnf install -y gcc python3-devel
And finally:
cd
python install.py -i
System dependent installation - fedora
Open a terminal and execute:
sudo dnf install -y \
python3-netifaces \
python3-psutil \
python3-dns \
python3-dateutil \
python3-charset-normalizer
Install PyRadio:
cd
python install.py
openSUSE and derivatives
Note: The following instructions were tested on a freshly installed openSUSE Tumbleweed 20260420.
Execute:
sudo zypper install -y \
python3-requests \
python3-rich \
python3-pipx
python3 -m pipx ensurepath
and close the terminal.
Fully isolated installation - openSUSE
Open a terminal and execute:
sudo zypper install -y \
gcc \
python3-devel
Install PyRadio:
cd
python3 install.py -i
System dependent installation - openSUSE
Open a terminal and install PyRadio dependencies:
sudo zypper install -y \
python3-psutil \
python3-dnspython \
python3-dateutil \
python3-netifaces \
python3-charset-normalizer
Finally, install PyRadio:
cd
python3 install.py
PyRadio Cache
Using pipx (a third party package) to deploy PyRadio on a system, may cause problems by itself.
pipx is able to correct some of these issues (according to its documentation), by executing:
pipx list
Furthermore, issues can also be resolved by reinstalling a package:
pipx reinstall pyradio
or even all pipx installed packages:
pipx reinstall-all
For these last commands to work, PyRadio source code must be available and present at the location it receded when the original installation took place.
PyRadio will keep a cache of ZIP files and a folder called pyradio-source in its cache folder (typically ~/.cache/pyradio) or in its data folder, on Windows; all files will be kept in a folder called _cache.
Normally, just one ZIP file has to be present in the cache; the ZIP with the latest PyRadio version code. If more ZIP files are present in the cache, they can safely be deleted.
To see the contents of the cache (provided you have downloaded the latest install.py), execute:
python install.py -sc
To open the cache folder, execute:
python install.py -oc
To clear the cache (delete all ZIP files but the latest), execute:
python install.py -cc
If for some reason the cache has been lost, or got corrupted, you can just:
python install.py -oc
Delete all file and then:
python install.py -gc
This will download the latest stable ZIP file and unzip it into the pyradio-source folder.
And of course, if you have a working PyRadio installation, you can execute:
pyradio -sc
pyradio -oc
pyradio -cc
pyradio -gc