diff --git a/docs/docs/guides/02-installation/01-mac.md b/docs/docs/guides/02-installation/01-mac.md index 90a2c4c18..ab8622164 100644 --- a/docs/docs/guides/02-installation/01-mac.md +++ b/docs/docs/guides/02-installation/01-mac.md @@ -50,7 +50,7 @@ jan-mac-arm64-{version}.zip ## Uninstall Jan -As Jan is development mode, you might get stuck on a broken build +As Jan is development mode, you might get stuck on a broken build. To reset your installation 1. Delete Jan from your `/Applications` folder diff --git a/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx b/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx index d9edd3a88..011b05480 100644 --- a/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx +++ b/docs/docs/guides/07-troubleshooting/01-stuck-on-broken-build.mdx @@ -87,10 +87,35 @@ The following steps will help you troubleshoot and resolve issues related to bro 3. If you are using version before `0.4.2` you need to run the following commands -```bash -ps aux | grep nitro -# Looks for processes like `nitro` and `nitro_arm_64`, and kill them one by one by process ID -kill -9 -``` + + + + ```bash + ps aux | grep nitro + # Looks for processes like `nitro` and `nitro_arm_64`, and kill them one by one by process ID + kill -9 + ``` + + + + + ```bash + # Find the process ID (PID) of the nitro process by filtering the list by process name + tasklist | findstr "nitro" + # Once you have the PID of the process you want to terminate, run the `taskkill` + taskkill /F /PID + ``` + + + + + ```bash + ps aux | grep nitro + # Looks for processes like `nitro` and `nitro_arm_64`, and kill them one by one by process ID + kill -9 + ``` + + + 4. Download the latest version from via our homepage, [https://jan.ai/](https://jan.ai/).