跳转到主要内容
Complete: needs review
This content is referenced from the current docs windows install guide TODO - [ ] UNVERIFIED INSTALL DOCS - VERIFY CONTENT - [ ] MOVE ETH WALLET SETUP CONTENT
Video Only 最新 go-livepeer 版本: (动态获取) 本指南介绍了如何从源二进制文件在 Windows 上安装 Livepeer 网关。
This is a Linux distribution operating in WSL2
1

Prerequisites

Install WSL2 (Windows host)
In Powershell(Admin)
wsl --install
# Reboot when prompted.
Check
  wsl --status
  # Output: Version: WSL 2
  # Output:Default distro: Ubuntu
Enter WSL
  wsl
2

Download & Unzip Binary

Download and unzip the Livepeer binary

https://github.com/livepeer/go-livepeer/releases/download/v0.7.7/livepeer-windows-amd64.zip
3

Create .bat File

Create a bat file to launch Livepeer.

Create a file named gateway.bat:
  touch gateway.bat
Use the following as a template, adding your personal info where needed (on-chain) and save a .bat file in the same directory as the Livepeer executable.
livepeer.exe -network=offchain -gateway -cliAddr=127.0.0.1:5935 -monitor=true -v=6 -rtmpAddr=0.0.0.0:1935 -httpAddr=0.0.0.0:8935  

PAUSE
4

Start Gateway

Start the Livepeer Gateway

Start the Livepeer Gateway using the .bat file.
livepeer_cli.exe -host 127.0.0.1 -http 5935
5

Tip: Start with Windows

If you’d like the Gateway to start with Windows you can create a System service using NSSM or the Windows Task Scheduler.

Last modified on March 1, 2026