Skip to content

Commit 67fd7a0

Browse files
committed
Example of downloading from release assets
1 parent 64bc34f commit 67fd7a0

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ It adds several new features.
2828
* **CalibreWeb Integration**; send books directly to CalibreWeb from the web interface.
2929
* [docker image](https://github.com/subdavis/kobodl/pkgs/container/kobodl)
3030
* [pypi package](https://pypi.org/project/kobodl/)
31+
* [pyinstaller bundles](https://github.com/subdavis/kobo-book-downloader/releases/latest)
3132

3233
## Web UI
3334

@@ -45,19 +46,37 @@ WebUI provides most of the same functions of the CLI. It was added to allow othe
4546

4647
## Installation
4748

48-
with pipx
49+
### Pre-built bundles
50+
51+
Simply download the appropriate executable from [the latest release assets](https://github.com/subdavis/kobo-book-downloader/releases/latest) and run it from the command line.
52+
53+
``` bash
54+
# Linux and MacOS BASH example (pick appropriate URL)
55+
wget https://github.com/subdavis/kobo-book-downloader/releases/latest/download/kobodl-ubuntu-latest # linux
56+
wget https://github.com/subdavis/kobo-book-downloader/releases/latest/download/kobodl-macos-latest # macos
57+
chmod +x kobodl-ubuntu-latest
58+
./kobodl-ubuntu-latest
59+
```
60+
61+
``` powershell
62+
# Windows Powershell example
63+
wget "https://github.com/subdavis/kobo-book-downloader/releases/latest/download/kobodl-windows-latest.exe" -outfile "kobodl.exe"
64+
./kobodl.exe
65+
```
66+
67+
### pipx
4968

5069
``` bash
5170
pipx install kobodl
5271
```
5372

54-
with pypi
73+
### pypi
5574

5675
``` bash
5776
pip3 install kobodl
5877
```
5978

60-
with docker
79+
### docker
6180

6281
``` bash
6382
# list users

0 commit comments

Comments
 (0)