The Minecraft Launcher is a user-friendly application designed to streamline the process of launching Minecraft and managing game settings. It provides an intuitive interface and essential features to enhance the Minecraft gaming experience.
Before installing the GamerVII Launcher, ensure you have the following prerequisites:
-
.NET 8.0 SDK: You need to have .NET 8.0 SDK installed on your system. You can download it from Microsoft's official website or use a package manager suitable for your operating system.
-
Git: Ensure Git is installed on your system. You can download it from the Git website or use a package manager.
-
Clone the Repository: Open a terminal and clone the repository using Git with the
--recursive
option:git clone --recursive https://github.com/GamerVII-NET/minecraft-launcher.git cd minecraft-launcher
-
Build the Project: Restore the dependencies and build the project using the .NET CLI:
dotnet restore dotnet build
-
Run the Launcher: Once the project is built, you can run the launcher using the following command:
dotnet run --project path/to/your/project
If you encounter any issues during the installation, ensure the following:
- Ensure the .NET SDK is correctly installed and the
DOTNET_HOME
environment variable is set. - Ensure Git is correctly installed and available in the terminal.
- Make sure you have the necessary permissions to run the build and execute the application.
For additional help, check the project's issue tracker or community forums.
To update the GamerVII Launcher to the latest version, navigate to the project directory and pull the latest changes from the repository:
git pull origin main
git submodule update --recursive --remote
dotnet build
Then, run the launcher again using the command mentioned earlier.
To uninstall the GamerVII Launcher, simply delete the project directory:
rm -rf minecraft-launcher