Skip to content

Installing Equicord

Equicord offers both graphical and command-line installation options for Windows users:

For macOS users, we provide graphical and command-line installers, as well as Equibop:

The CLI builds are plain binaries, so run chmod +x <file> after downloading.

Linux users have several installation options depending on their desktop environment and preferences:

Install Equicord via shell script:

Terminal window
sh -c "$(curl -sS https://raw.githubusercontent.com/Equicord/Equicord/refs/heads/main/misc/install.sh)"

If you want to develop plugins or run the bleeding-edge version of Equicord, you can build it yourself instead of using one of the prebuilt installers above.

Equicord is powered by Node.js, git and pnpm, so you will have to install all of those before you can get started:

Make sure that all of them are added to your PATH, you will need it.

To verify correct installation, run the following commands. All 3 should print the version of the respective software without errors:

Terminal window
git --version
node --version
pnpm --version

Next, you should check out the Equicord source code!

Pick a convenient folder that you can remember, for example your Documents folder. Open a terminal and point it to the desired folder:

Terminal window
cd Documents

Then, clone the Equicord repository:

Terminal window
git clone https://github.com/Equicord/Equicord

and finally point your terminal to the newly created Equicord folder:

Terminal window
cd Equicord

The next step is installing Equicord’s dependencies. We use the pnpm package manager. Please do not use npm or yarn!

Issue the following command:

Terminal window
pnpm install --frozen-lockfile

Equicord might add, remove or update dependencies at any time. Thus, you might receive errors like Cannot find package "foobar" imported from ... after updating.

If this happens, you should run the same command once again to update the installed dependencies.

The last step is compiling the Equicord code.

The steps for this will differ depending on which platform you want to build for.

Terminal window
pnpm build

You’re done! Now you can install your custom build of Equicord.

The installation process differs depending on the platform you want to install on.

Run

Terminal window
pnpm inject

This will launch the Equilotl installer. Just patch the desired Discord install and you’re done!