You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
The local installer packages all required dependencies inside the installer itself, so you don’t need an internet connection during the installation process.
164
+
The network installer downloads the necessary dependencies from the internet during the installation. This option provides a smaller installer, but requires an internet connection.
165
+
166
+
After installation, you can run Cortex.cpp from the command line by typing `cortex --help`. For beta and nightly builds, you can run `cortex-beta --help` and `cortex-nightly --help` respectively.
167
+
168
+
#### Windows and MacOS
169
+
170
+
Download the installer and double-click to the exe file to start the installation process. Follow the on-screen instructions to complete the installation.
171
+
172
+
For MacOS, there is a uninstaller script comes with the binary and added to the `/usr/local/bin/` directory. The script is named `cortex-uninstall.sh` for stable builds, `cortex-beta-uninstall.sh` for beta builds and `cortex-nightly-uninstall.sh` for nightly builds.
173
+
174
+
#### Linux
175
+
176
+
Download the installer and run the following command in the terminal:
177
+
178
+
```bash
179
+
sudo apt install ./cortex-local-installer.deb
180
+
# or
181
+
sudo apt install ./cortex-network-installer.deb
182
+
```
183
+
184
+
The binary will be installed in the `/usr/bin/` directory.
34
185
35
186
## Built-in Model Library
36
187
@@ -65,18 +216,29 @@ Cortex.cpp includes a REST API accessible at `localhost:3928`. For a complete li
65
216
## Uninstallation
66
217
67
218
### Windows
68
-
1. Navigate to `Add or Remove Programs`.
69
-
2. Search for Cortex.cpp and click `Uninstall`.
219
+
1. Open the Windows Control Panel.
220
+
2. Navigate to `Add or Remove Programs`.
221
+
3. Search for `cortexcpp` and double click to uninstall. (for beta and nightly builds, search for `cortexcpp-beta` and `cortexcpp-nightly` respectively)
0 commit comments