Windows
This page details how to install Polkadot Live on Windows systems, either by downloading a pre-built installer or building the application directly from source.
Installer
We have deployed a Polkadot Live landing page that provides download links for macOS arm64 and Windows x64 installers.
Navigate to the Polkadot Live's latest release on GitHub and locate the .exe
download link at the bottom of the page:
Click the release's .exe
installer link to download it to your system. After downloading is completed, simply double-click the .exe
file to install and launch Polkadot Live.
A new Polkadot Live icon will be displayed in the task bar tray. Click it to show and hide the main window:
You can close the application altogether by selecting Exit from the main window's cog menu.
Build From Source
Follow the instructions below to build Polkadot Live from source on Windows.
Install dependencies
-
Download and install Git by following the instructions on the Git website download page.
-
Download and install GitHub CLI by clicking the download button on its homepage.
-
Download and install Node.js by following the instructions on the Node.js website download page.
-
Open Windows Powershell and run the following commands to install Yarn globally and verify a successful install by checking its version output:
npm install --global yarn
yarn --version
Clone repository and build application
Run the following commands in the Windows Powershell command line program.
-
Navigate to an appropriate place on your disk and clone the Polkadot Live application repository.
cd ~
mkdir Polkadot
cd Polkadot
gh repo clone polkadot-live/polkadot-live-app -
Enter the project root directory.
cd polkdadot-live-app
-
Set yarn to version 4:
yarn set version berry
-
Install project dependencies
yarn install
-
Build and package the application.
yarn package
-
The application will be built within a directory called
out\
under the project root. Open theout\Polkadot-Live-win32-x64
directory in File Explorer and double-click thePolkadot Live
application to open it:
Double click on the Polkadot Live
application to launch it. A new icon will be displayed in the task bar tray. Click it to show and hide the main window:
You can close the application altogether by selecting Exit from the main window's cog menu.