modernuo/docs/installation.md
Kamron Batman 2e4668dbe5
feat: Updates to .NET 8. (#1542)
### Breaking Changes
- Updating to .NET 8 - Required O/S's have slightly changed.
2023-11-14 17:08:09 -08:00

1.8 KiB

title
Installation

Installation

=== "Windows" ### Prerequisites 1. Download and install the latest .NET 8 SDK 1. Download and install from here

    !!! Tip
        Use [Windows Terminal](https://learn.microsoft.com/en-us/windows/terminal/install) as your command prompt.

### Install ModernUO
1. Navigate to the folder where you want to install ModernUO.
1. Using _Windows Terminal_ run:
    ```bash
    git clone https://github.com/modernuo/modernuo
    cd modernuo
    ```

=== "OSX" ### Prerequisites 1. Download and install the latest .NET 8 SDK. 1. Using terminal, install homebrew and git: bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" brew install git ### Install ModernUO 1. Using terminal, navigate to the folder where you want to install ModernUO and run: bash git clone https://github.com/modernuo/modernuo cd modernuo

=== "Linux" ### Prerequisites 1. Download and install the latest .NET 8 SDK. 1. Using bash, install git: bash sudo apt update && sudo apt install git

    !!! Note
        The command to install git might be different for your flavor of linux. Consult your local Google search for answers.

### Install ModernUO
1. Using _bash_, navigate to the folder where you want to install ModernUO and run:
   ```bash
    git clone https://github.com/modernuo/modernuo
    cd modernuo
   ```