Update troubleshooting.md
This commit is contained in:
parent
64b219f1fc
commit
db860778e4
@ -7,21 +7,28 @@ sidebar_position: 5
|
|||||||
Please note that 👋Jan is in "development mode," and you might encounter issues. If you need to reset your installation, follow these steps:
|
Please note that 👋Jan is in "development mode," and you might encounter issues. If you need to reset your installation, follow these steps:
|
||||||
|
|
||||||
## Issue 1: Broken Build
|
## Issue 1: Broken Build
|
||||||
1. Delete the Jan Application from your computer.
|
|
||||||
|
|
||||||
2. Clear the cache by running one of the following commands:
|
As Jan is development mode, you might get stuck on a broken build.
|
||||||
|
|
||||||
|
To reset your installation:
|
||||||
|
|
||||||
|
1. Delete Jan from your `/Applications` folder
|
||||||
|
|
||||||
|
1. Delete Application data:
|
||||||
```sh
|
```sh
|
||||||
|
# Newer versions
|
||||||
|
rm -rf /Users/$(whoami)/Library/Application\ Support/jan
|
||||||
|
|
||||||
|
# Versions 0.2.0 and older
|
||||||
rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron
|
rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
1. Clear Application cache:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
rm -rf /Users/$(whoami)/Library/Application\ Support/jan
|
rm -rf /Users/$(whoami)/Library/Caches/jan*
|
||||||
```
|
```
|
||||||
|
|
||||||
3. If the above steps fail, use the following commands to find and kill any problematic processes:
|
1. Use the following commands to remove any dangling backend processes:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
ps aux | grep nitro
|
ps aux | grep nitro
|
||||||
@ -32,3 +39,4 @@ Please note that 👋Jan is in "development mode," and you might encounter issue
|
|||||||
```sh
|
```sh
|
||||||
kill -9 <PID>
|
kill -9 <PID>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user