From b967b63288db52db177e81bae09f2ad8a58a3a14 Mon Sep 17 00:00:00 2001 From: myalow <82334800+myalow@users.noreply.github.com> Date: Tue, 21 Mar 2023 18:27:37 -0600 Subject: [PATCH] Add linux package lists (#3571) Added dependency installs for Arch & Ubuntu. There may be a more straightforward way to install yarn on Ubuntu, but I'm not certain. --- docs/DEVELOPMENT.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index b92f06de3..80671fffd 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -27,6 +27,16 @@ NOTE: The `make` command in Windows will be `mingw32-make` with MingW. For examp 1. If you don't have it already, install the [Homebrew package manager](https://brew.sh). 2. Install dependencies: `brew install go git yarn gcc make node ffmpeg` +### Linux + +#### Arch Linux +1. Install dependencies: `sudo pacman -Sy go git yarn gcc make nodejs ffmpeg --needed` + +#### Ubuntu +1. Install dependencies: `sudo apt-get install golang git gcc nodejs ffmpeg -y` +2. Enable corepack in Node.js: `corepack enable` +3. Install yarn: `corepack prepare yarn@stable --activate` + ## Commands * `make pre-ui` - Installs the UI dependencies. Only needs to be run once before building the UI for the first time, or if the dependencies are updated