### Install Project Dependencies Source: https://github.com/ulixee/desktop/blob/main/README.md Installs project dependencies using Yarn. This is a common first step in setting up a Node.js project for development. ```bash yarn ``` -------------------------------- ### Start Development Server Source: https://github.com/ulixee/desktop/blob/main/README.md Launches the development server for Ulixee Desktop. This command is used during active development to run and test the application locally. ```bash yarn dev ``` -------------------------------- ### Troubleshoot Node-Gyp Python Version Source: https://github.com/ulixee/desktop/blob/main/README.md Installs project dependencies while specifying a Python executable path to resolve node-gyp errors related to Python version compatibility. This is crucial for projects with native Node.js modules. ```bash PYTHON=/usr/bin/python3.9 yarn install ``` -------------------------------- ### Build Dependencies for Ulixee Platform/Hero Integration Source: https://github.com/ulixee/desktop/blob/main/README.md Builds project dependencies, specifically for integrating Ulixee Platform or Hero. It may require specifying a Python version if node-gyp encounters issues. ```bash yarn build:deps ``` ```bash PYTHON=python3.10 yarn build:deps ``` -------------------------------- ### Build Ulixee Desktop for Windows Source: https://github.com/ulixee/desktop/blob/main/README.md Builds the Ulixee Desktop application specifically for the Windows operating system. This command is part of the release process. ```bash yarn build:win ``` -------------------------------- ### Build Ulixee Desktop for Linux Source: https://github.com/ulixee/desktop/blob/main/README.md Builds the Ulixee Desktop application specifically for the Linux operating system. This command is part of the release process. ```bash yarn build:linux ``` -------------------------------- ### Build Ulixee Desktop for macOS Source: https://github.com/ulixee/desktop/blob/main/README.md Builds the Ulixee Desktop application specifically for the macOS operating system. This command is part of the release process. ```bash yarn build:mac ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.