docs: improved broken build docs
This commit is contained in:
parent
e3f758bf98
commit
59c76dca29
@ -50,7 +50,7 @@ jan-mac-arm64-{version}.zip
|
|||||||
|
|
||||||
## Uninstall Jan
|
## 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
|
To reset your installation
|
||||||
|
|
||||||
1. Delete Jan from your `/Applications` folder
|
1. Delete Jan from your `/Applications` folder
|
||||||
|
|||||||
@ -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
|
3. If you are using version before `0.4.2` you need to run the following commands
|
||||||
|
|
||||||
```bash
|
<Tabs groupId="operating-systems">
|
||||||
ps aux | grep nitro
|
<TabItem value="mac" label="macOS">
|
||||||
# Looks for processes like `nitro` and `nitro_arm_64`, and kill them one by one by process ID
|
|
||||||
kill -9 <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 <PID>
|
||||||
|
```
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="win" label="Windows">
|
||||||
|
|
||||||
|
```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 <PID>
|
||||||
|
```
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="linux" label="Linux">
|
||||||
|
|
||||||
|
```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 <PID>
|
||||||
|
```
|
||||||
|
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
4. Download the latest version from via our homepage, [https://jan.ai/](https://jan.ai/).
|
4. Download the latest version from via our homepage, [https://jan.ai/](https://jan.ai/).
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user