This guide provides detailed instructions for installing all prerequisites required to run 5ire.
- Visit Python's official website
- Download the latest Python installer
- Run the installer and make sure to check "Add Python to PATH"
- Verify installation in Command Prompt:
python --version
Or using package managers:
# Using winget
winget install Python
# Using scoop
scoop install python# Using Homebrew
brew install pythonsudo apt update
sudo apt install python3- Visit Node.js website
- Download and install the LTS version
- Verify installation:
node --versionandnpm --version
Or using package managers:
# Using winget
winget install OpenJS.NodeJS.LTS
# Using scoop
scoop install nodejs-lts# Using Homebrew
brew install nodecurl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install nodejsInstall uv using one of the following methods:
# On macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"# With pip
pip install uv
# Or with pipx
pipx install uvAfter installation, you can update uv to the latest version:
uv self updateVerify installation:
uv --version