Update readme.md + Updated install instructions for SillyTavern Launcher

bca99a4d7fb5fa0991625ad34f5cd405a4855637

deffcolony <61471128+deffcolony@users.noreply.github.com>

Signed
1 files changed, +40 -16Ignore whitespace
.github/readme.md+40 -16
@@ -144,12 +144,14 @@ A full list of included extensions and tutorials on how to use them can be found
144 8. The server will then start, and SillyTavern will pop up in your browser.144 8. The server will then start, and SillyTavern will pop up in your browser.
145145
146## Installing via SillyTavern Launcher146## Installing via SillyTavern Launcher
147 1. Install [Git for Windows](https://gitforwindows.org/)1471. On your keyboard: press **`WINDOWS + R`** to open Run dialog box. Then, run the following command to install git:
148 2. Open Windows Explorer (`Win+E`) and make or choose a folder where you wanna install the launcher to148```shell
149 3. Open a Command Prompt inside that folder by clicking in the 'Address Bar' at the top, typing `cmd`, and pressing Enter.149cmd /c winget install -e --id Git.Git
150 4. When you see a black box, insert the following command: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git`150```
151 5. Double-click on `installer.bat` and choose what you wanna install1512. 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:
152 6. After installation double-click on `launcher.bat`152```shell
153git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher && start installer.bat
154```
153155
154## Installing via GitHub Desktop156## Installing via GitHub Desktop
155(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/))157(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.
183185
184### For Linux users186### For Linux users
1851. Open your favorite terminal and install git1871. Open your favorite terminal and install git
1862. Download Sillytavern Launcher with: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git`1882. Git clone the Sillytavern-Launcher with:
1873. Navigate to the SillyTavern-Launcher with: `cd SillyTavern-Launcher`189```shell
1884. Start the install launcher with: `chmod +x install.sh && ./install.sh` and choose what you wanna install190git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher
1895. After installation start the launcher with: `chmod +x launcher.sh && ./launcher.sh`191```
1923. Start the installer.sh with:
193```shell
194chmod +x install.sh && ./install.sh
195```
1964. After installation start the launcher.sh with:
197```shell
198chmod +x launcher.sh && ./launcher.sh
199```
190200
191### For Mac users201### For Mac users
1921. Open a terminal and install brew with: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`2021. Open a terminal and install brew with:
1932. Then install git with: `brew install git`203```shell
1943. Download Sillytavern Launcher with: `git clone https://github.com/SillyTavern/SillyTavern-Launcher.git`204/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
1954. Navigate to the SillyTavern-Launcher with: `cd SillyTavern-Launcher`205```
1965. Start the install launcher with: `chmod +x install.sh && ./install.sh` and choose what you wanna install2062. Install git with:
1976. After installation start the launcher with: `chmod +x launcher.sh && ./launcher.sh`207```shell
208brew install git
209```
2103. Git clone the Sillytavern-Launcher with:
211```shell
212git clone https://github.com/SillyTavern/SillyTavern-Launcher.git && cd SillyTavern-Launcher
213```
2144. Start the installer.sh with:
215```shell
216chmod +x install.sh && ./install.sh
217```
2185. After installation start the launcher.sh with:
219```shell
220chmod +x launcher.sh && ./launcher.sh
221```
198222
199## 🐋 Installing via Docker223## 🐋 Installing via Docker
200224