Mercurial > hg > pub > prymula > scripts
comparison bing4desktop/README.md @ 38:ad47fbf9121f
README FIX
author | prymula <prymula76@outlook.com> |
---|---|
date | Fri, 09 Feb 2024 23:50:58 +0100 |
parents | eb36f97db4de |
children |
comparison
equal
deleted
inserted
replaced
37:ec5ca25ee7e4 | 38:ad47fbf9121f |
---|---|
1 # bing4desktop | 1 # bing4desktop |
2 | 2 |
3 ## Start | 3 ## Start |
4 | 4 |
5 To download the latest version, type in terminal: | 5 To download the latest version, type in terminal: |
6 | |
6 ``` | 7 ``` |
7 git clone https://gitlab.com/pietraszczyk/bing4desktop.git | 8 git clone https://gitlab.com/pietraszczyk/bing4desktop.git |
8 ``` | 9 |
9 You still need to install dependencies to run: | 10 # You still need to install dependencies to run: |
10 | 11 |
11 | 12 |
12 Fedora: | 13 # Fedora: |
13 ``` | 14 |
14 sudo dnf install python3-pillow-tk python3-requests python3-tkinter python3-pystray make | 15 sudo dnf install python3-pillow-tk python3-requests python3-tkinter python3-pystray make |
16 | |
17 | |
18 #OpenSUSE: | |
19 | |
20 | |
21 sudo zypper in python-Pillow python3-requests python3-tk make | |
22 | |
23 # except that you will have to install the 'pystray' package via pip: | |
24 | |
25 pip3 install pystray | |
26 | |
27 | |
28 # Ubuntu: | |
29 | |
30 sudo apt install python3-requests python3-tk python3-pil.imagetk python3-pystray make | |
31 | |
32 | |
33 #Arch: | |
34 | |
35 pacman -S python-pillow python-requests tk | |
15 ``` | 36 ``` |
16 | 37 |
17 OpenSUSE: | 38 source archive 'pystarce' should be downloaded from the [AUR] repository (https://aur.archlinux.org/packages/python-pystray) along with PKGBUILD, and build the package with the command 'makepkg'. |
18 ``` | |
19 sudo zypper in python-Pillow python3-requests python3-tk make | |
20 ``` | |
21 except that you will have to install the 'pystray' package via pip: | |
22 ``` | |
23 pip3 install pystray | |
24 ``` | |
25 | 39 |
26 Ubuntu: | |
27 ``` | |
28 sudo apt install python3-requests python3-tk python3-pil.imagetk python3-pystray make | |
29 ``` | |
30 | |
31 Arch: | |
32 ``` | |
33 pacman -S python-pillow python-requests tk | |
34 ``` | |
35 source archive 'pystarce' should be downloaded from the [AUR] repository (https://aur.archlinux.org/packages/python-pystray) along with PKGBUILD, and build the package with the command: | |
36 ```` | |
37 makepkg | |
38 ``` | |
39 | 40 |
40 | 41 |
41 Running on a trial basis | 42 Running on a trial basis |
42 | 43 |
43 For a trial run before installation, you can run the application with the command: | 44 For a trial run before installation, you can run the application with the command: |
44 ``` | 45 |
45 ./bing4desktop.py | 46 ./bing4desktop.py |
46 ``` | 47 |
47 | 48 |
48 | 49 |
49 Installation on file system: | 50 Installation on file system: |
50 | 51 |
51 Arch, Fedora and OpenSUSE: | |
52 ``` | 52 ``` |
53 # Arch, Fedora and OpenSUSE: | |
54 | |
53 make install | 55 make install |
54 ``` | |
55 | 56 |
56 Debian/Ubuntu: | 57 |
57 ``` | 58 # Debian/Ubuntu: |
59 | |
58 make -f Makefile.debian | 60 make -f Makefile.debian |
59 ``` | 61 ``` |
60 | 62 |
61 | 63 |
62 ## Finish | 64 ## Finish |
75 | 77 |
76 | 78 |
77 | 79 |
78 | 80 |
79 De installation: | 81 De installation: |
82 ``` | |
83 #Fedora, Arch, OpenSUSE: | |
80 | 84 |
81 Fedora, Arch, OpenSUSE: | 85 sudo make uninstall |
86 | |
87 | |
88 #Ubuntu/Debian | |
89 | |
90 sudo make -f Makefile.debian uninstall | |
82 ``` | 91 ``` |
83 sudo make uninstall | 92 |
84 ``` | |
85 Ubuntu/Debian | |
86 ``` | |
87 sudo make -f uninstall | |
88 ``` |