1
0
Fork 0
mirror of synced 2024-05-14 09:32:51 +12:00

Update README.md

This commit is contained in:
Dummerle 2021-09-20 21:13:38 +02:00
parent 33f221fcbb
commit 03c2ad77eb
2 changed files with 8 additions and 1 deletions

View file

@ -22,7 +22,6 @@ or `--startmenu-shortcut` option
**Note**: On Linux must be `/home/user/.local/bin` in PATH and on Windows must be `PythonInstallationDirectory\Scripts`
in PATH.
### Linux
#### Arch based
@ -41,6 +40,12 @@ Install via `pip`.
In [releases page](https://github.com/Dummerle/Rare/releases) are AppImages for Linux and a msi file for windows
available
### Latest packages
In [actions](https://github.com/Dummerle/Rare/actions) you find packages for the latest commits.
**Note**: they might be unstable
### Run from source
1. Clone the repo with Submodule: `git clone https://github.com/Dummerle/Rare --recurse-submodules`.
2. Run `pip install -r requirements.txt` to get dependencies. If you use `pacman` you can

View file

@ -28,3 +28,5 @@ if not os.path.exists(data_dir):
os.makedirs(data_dir)
image_dir = os.path.join(data_dir, "images")
if not os.path.exists(image_dir):
os.mkdir(image_dir)