ModernUO/docs/installation.md
2020-11-07 13:26:27 -08:00

54 lines
1.8 KiB
Markdown

---
title: Installation
---
# Installation
=== "Windows"
### Prerequisites
1. Download and install the latest [.NET 5 SDK](https://dotnet.microsoft.com/download/dotnet/5.0)
1. Download and install from [here](https://git-scm.com/download/win)
!!! Tip
Use Git Bash as your command prompt. This can be found in the Windows Start Menu after installation.
### Install ModernUO
1. Navigate to the folder where you want to install ModernUO.
1. Using _Git Bash_ run:
```bash
git clone https://github.com/modernuo/modernuo
cd modernuo
```
=== "OSX"
<h3>Prerequisites</h3>
1. Download and install the latest [.NET 5 SDK](https://dotnet.microsoft.com/download/dotnet/5.0)
1. Using _terminal_, install [homebrew](https://brew.sh) and git:
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew install git
```
<h3>Install ModernUO</h3>
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"
<h3>Prerequisites</h3>
1. Download and install the latest [.NET Core SDK](instructions [here](https://docs.microsoft.com/en-us/dotnet/core/install/linux))
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.
<h3>Install ModernUO</h3>
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
```