mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
feat: add install.sh and install.ps1 download scripts with docs update
Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/bfeecfa8-81d9-45da-b1a7-b2dd6804b34f Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
This commit is contained in:
parent
301ea6b9db
commit
d08cf803b8
4 changed files with 186 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ title: Installation
|
|||
|
||||
# Installation
|
||||
|
||||
- [Quick Install (one-liner)](#quick-install)
|
||||
- [YouTube Tutorials](#youtube-tutorials)
|
||||
- [Download a compiled binary](#download-a-compiled-binary)
|
||||
- [Building from the source code](#building-from-the-source-code)
|
||||
|
|
@ -11,6 +12,42 @@ title: Installation
|
|||
- [Run on Android](#run-on-android)
|
||||
- [Run MCC 24/7 on a VPS](#run-on-a-vps)
|
||||
|
||||
## Quick Install
|
||||
|
||||
The quickest way to get MCC is to run the installer script for your platform. It auto-detects your OS and CPU architecture, fetches the latest release from GitHub, and saves the binary to your current directory.
|
||||
|
||||
### Linux / macOS
|
||||
|
||||
Open a terminal in the folder where you want MCC and run:
|
||||
|
||||
```bash
|
||||
curl -fsSL https://mccteam.github.io/install.sh | sh
|
||||
```
|
||||
|
||||
If you prefer `wget`:
|
||||
|
||||
```bash
|
||||
wget -qO- https://mccteam.github.io/install.sh | sh
|
||||
```
|
||||
|
||||
The script downloads `MinecraftClient` and marks it executable. Supported architectures: `x64`, `arm64`, `arm` (Linux only).
|
||||
|
||||
### Windows
|
||||
|
||||
Open **PowerShell** in the folder where you want MCC and run:
|
||||
|
||||
```powershell
|
||||
iwr -useb https://mccteam.github.io/install.ps1 | iex
|
||||
```
|
||||
|
||||
The script downloads `MinecraftClient.exe`. Supported architectures: `x64`, `x86`, `arm64`.
|
||||
|
||||
::: tip
|
||||
You can also download the scripts directly and inspect them before running:
|
||||
- Linux/macOS: [install.sh](https://mccteam.github.io/install.sh)
|
||||
- Windows: [install.ps1](https://mccteam.github.io/install.ps1)
|
||||
:::
|
||||
|
||||
## YouTube Tutorials
|
||||
|
||||
If you're not the kind of person that likes textual tutorials, our community has made video tutorials available on YouTube.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue