Installation¶
Windows¶
Method |
Installing |
---|---|
Installers |
See the Windows binaries section below |
Portable |
See the Windows portable version section below |
choco install streamlink
|
macOS¶
Method |
Installing |
---|---|
Easy install |
sudo easy_install -U streamlink
|
brew install streamlink
|
Linux and BSD¶
Distribution |
Installing |
---|---|
sudo pacman -S streamlink
|
|
git clone https://aur.archlinux.org/streamlink-git.git
cd streamlink-git
makepkg -si
|
|
sudo apt update
sudo apt install streamlink
|
|
wget -qO- "https://bintray.com/user/downloadSubjectPublicKey?username=amurzeau" | sudo apt-key add -
echo "deb https://dl.bintray.com/amurzeau/streamlink-debian stretch-backports main" | sudo tee "/etc/apt/sources.list.d/streamlink.list"
sudo apt update
sudo apt install streamlink
|
|
sudo dnf install streamlink
|
|
sudo emerge net-misc/streamlink
|
|
cd /usr/pkgsrc/multimedia/streamlink
sudo make install clean
|
|
nix-env -iA nixos.streamlink
|
|
doas pkg_add streamlink
|
|
sudo eopkg install streamlink
|
|
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update
sudo apt install streamlink
|
|
sudo xbps-install streamlink
|
Package maintainers¶
Distribution/Platform |
Maintainer |
---|---|
Arch |
Giancarlo Razzolini <grazzolini at archlinux.org> |
Arch (aur, git) |
Josip Ponjavic <josipponjavic at gmail.com> |
Chocolatey |
Scott Walters <me at scowalt.com> |
Debian |
Alexis Murzeau <amubtdx at gmail.com> |
Fedora |
Mohamed El Morabity <melmorabity at fedoraproject.org> |
Gentoo |
soredake <fdsfgs at krutt.org> |
NetBSD |
Maya Rashish <maya at netbsd.org> |
NixOS |
Tuomas Tynkkynen <tuomas.tynkkynen at iki.fi> |
OpenBSD |
Brian Callahan <bcallah at openbsd.org> |
Solus |
Bryan T. Meyers <bmeyers at datadrake.com> |
Ubuntu |
Alin Andrei <andrew at webupd8.org> |
Void |
wkuipers <wietse at kuiprs.nl> |
Windows binaries |
beardypig <beardypig at protonmail.com> |
Windows port. version |
RosadinTV <RosadinTV at outlook.com> |
Source code¶
If a package is not available on your platform (or if it's out of date), Streamlink can be installed from source.
This can be done in a couple of different ways, for example by using pip, the Python package manager,
or by checking out the source code with git and installing it via setuptools.
Using easy_install is no longer recommended.
Note
On some Linux distributions, the Python headers package needs to be installed before installing Streamlink
(python-devel
on RedHat, Fedora, etc.).
Ensure that you are using an up-to-date version of pip. At least version 6 is required.
Note
On Linux, when not using a virtual environment, it is recommended to install custom python packages like this
only for the current user (see the --user
parameter below), since system-wide packages can cause conflicts with
the system's regular package manager.
Those user-packages will be installed into ~/.local
instead of /usr
and entry-scripts for
running the programs can be found in ~/.local/bin
, eg. ~/.local/bin/streamlink
.
In order for the command line shell to be able to find these executables, the user's PATH
environment variable
needs to be extended. This can be done by adding export PATH="${HOME}/.local/bin:${PATH}"
to ~/.profile
or ~/.bashrc
.
Version |
Installing |
---|---|
# Current user
pip install --upgrade --user streamlink
# System wide
sudo pip install --upgrade streamlink
|
|
# Current user
pip install --upgrade --user git+https://github.com/streamlink/streamlink.git
# System wide
sudo pip install --upgrade git+https://github.com/streamlink/streamlink.git
|
|
# Current user
git clone https://github.com/streamlink/streamlink.git
cd streamlink
python setup.py install --user
# System wide
git clone https://github.com/streamlink/streamlink.git
cd streamlink
sudo python setup.py install
|
Virtual environment¶
Another method of installing Streamlink in a non-system-wide way is using virtualenv, which creates a user owned Python environment instead.
# Create a new environment
virtualenv ~/myenv
# Activate the environment
source ~/myenv/bin/activate
# Install Streamlink in the environment
pip install --upgrade streamlink
# Use Streamlink in the environment
streamlink ...
# Deactivate the environment
deactivate
# Use Streamlink without activating the environment
~/myenv/bin/streamlink ...
Note
This may also be required on some macOS versions that seem to have weird permission issues.
Dependencies¶
To install Streamlink from source you will need these dependencies.
Name |
Notes |
---|---|
At least version 2.7 or 3.4. |
|
Automatically installed by the setup script |
|
Only needed on Python versions older than 2.7. |
|
Only needed on Python 2.x. |
|
At least version 1.0. |
|
Only needed on Python versions older than 3.4. |
|
Required to play some encrypted streams |
|
Used for localization settings, provides language information |
|
Used for localization settings, provides country information |
|
Used for MPEG-DASH streams |
|
Used for some plugins |
|
Used for SOCKS Proxies |
|
Used for some plugins |
|
Only needed on Python versions older than 3.3 |
|
Only needed on Python versions older than 3.3 |
|
Optional |
|
Required to play RTMP streams. |
|
Required to play streams that are made up of separate audio and video streams, eg. YouTube 1080p+ |
Windows binaries¶
Important
Windows XP is not supported.
Windows Vista requires at least SP2 to be installed.
Release |
Notes |
---|---|
Download the installer from the GitHub releases page. |
|
For testing purposes only! Updated once per day. |
These installers contain:
A compiled version of Streamlink that does not require an existing Python installation
RTMPDump for viewing RTMP streams
ffmpeg for muxing streams
and perform the following tasks:
Add Streamlink to the system's list of installed applications.
An uninstaller will automatically be created during installation.Add Streamlink's installation directory to the system's
PATH
environment variable.
This allows the user to run thestreamlink
command globally from the command prompt or powershell without specifying its directory.
To build the installer on your own, NSIS
and pynsist
need to be installed.
Windows portable version¶
Maintainer |
Links |
---|---|
RosadinTV |
|
Beardypig |