From bca99a4d7fb5fa0991625ad34f5cd405a4855637 Mon Sep 17 00:00:00 2001 From: deffcolony <61471128+deffcolony@users.noreply.github.com> Date: Mon, 17 Jun 2024 13:04:06 +0200 Subject: [PATCH] Update readme.md + Updated install instructions for SillyTavern Launcher --- .github/readme.md | 56 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 40 insertions(+), 16 deletions(-) diff --git a/.github/readme.md b/.github/readme.md index 11d99e105..3b039849d 100644 --- a/.github/readme.md +++ b/.github/readme.md @@ -144,12 +144,14 @@ A full list of included extensions and tutorials on how to use them can be found 8. The server will then start, and SillyTavern will pop up in your browser. ## Installing via SillyTavern Launcher - 1. Install [Git for Windows](https://gitforwindows.org/) - 2. Open Windows Explorer (`Win+E`) and make or choose a folder where you wanna install the launcher to - 3. Open a Command Prompt inside that folder by clicking in the 'Address Bar' at the top, typing `cmd`, and pressing Enter. - 4. When you see a black box, insert the following command: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git` - 5. Double-click on `installer.bat` and choose what you wanna install - 6. After installation double-click on `launcher.bat` +1. On your keyboard: press **`WINDOWS + R`** to open Run dialog box. Then, run the following command to install git: +```shell +cmd /c winget install -e --id Git.Git +``` +2. On your keyboard: press **`WINDOWS + E`** to open File Explorer, then navigate to the folder where you want to install the launcher. Once in the desired folder, type `cmd` into the address bar and press enter. Then, run the following command: +```shell +git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher && start installer.bat +``` ## Installing via GitHub Desktop (This allows git usage **only** in GitHub Desktop, if you want to use `git` on the command line too, you also need to install [Git for Windows](https://gitforwindows.org/)) @@ -183,18 +185,40 @@ For MacOS / Linux all of these will be done in a Terminal. ### For Linux users 1. Open your favorite terminal and install git -2. Download Sillytavern Launcher with: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git` -3. Navigate to the SillyTavern-Launcher with: `cd SillyTavern-Launcher` -4. Start the install launcher with: `chmod +x install.sh && ./install.sh` and choose what you wanna install -5. After installation start the launcher with: `chmod +x launcher.sh && ./launcher.sh` +2. Git clone the Sillytavern-Launcher with: +```shell +git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher +``` +3. Start the installer.sh with: +```shell +chmod +x install.sh && ./install.sh +``` +4. After installation start the launcher.sh with: +```shell +chmod +x launcher.sh && ./launcher.sh +``` ### For Mac users -1. Open a terminal and install brew with: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"` -2. Then install git with: `brew install git` -3. Download Sillytavern Launcher with: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git` -4. Navigate to the SillyTavern-Launcher with: `cd SillyTavern-Launcher` -5. Start the install launcher with: `chmod +x install.sh && ./install.sh` and choose what you wanna install -6. After installation start the launcher with: `chmod +x launcher.sh && ./launcher.sh` +1. Open a terminal and install brew with: +```shell +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` +2. Install git with: +```shell +brew install git +``` +3. Git clone the Sillytavern-Launcher with: +```shell +git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher +``` +4. Start the installer.sh with: +```shell +chmod +x install.sh && ./install.sh +``` +5. After installation start the launcher.sh with: +```shell +chmod +x launcher.sh && ./launcher.sh +``` ## 🐋 Installing via Docker