Skip to content

Commit

Permalink
chore: update installation instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethnym committed Dec 2, 2024
1 parent 95c6bbb commit 0c2ceb3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,20 @@ i am open to feature requests. however, limited time/effort will be spent on thi
> [!IMPORTANT]
> Before installing tesseract, make sure that your machine has docker installed.
Run the following command:

```sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/kennethnym/tesseract/refs/heads/master/scripts/install.sh)"
```

The installation script will install tesseract to `/opt/tesseract/`. To start tesseract, run the `tesseract` binary,
which runs tesseract in foreground.

You can also run tesseract in the background:

```shell
cd /opt/tesseract
nohup ./tesseract > /var/log/tesseract.log 2>&1 &
nohup ./tesseract > ~/tesseract.log 2>&1 &
```

Write down the PID so that you can kill it later.
Expand Down

0 comments on commit 0c2ceb3

Please sign in to comment.