63 | Distribution |
64 | Repository |
65 | Automatic Updates |
66 | Maintainer |
67 | How to install |
68 |
69 | Arch Linux |
70 | Community |
71 | ✔️ |
72 | Frederik Schwan |
73 | pacman -S caprine |
74 |
75 |
76 | Debian / Ubuntu (manually) |
77 | GitHub |
78 | ❌ |
79 | Official |
80 |
81 | Download the .deb file
82 | |
83 |
84 |
85 | Debian / Ubuntu (deb-get) |
86 | GitHub |
87 | ✔️ |
88 | Official |
89 |
90 | Follow the instructions below
91 | |
92 |
93 |
94 | Debian / Ubuntu (APT) |
95 | Gemfury |
96 | ✔️ |
97 | Lefteris Garyfalakis |
98 |
99 | Follow the instructions below
100 | |
101 |
102 |
103 | RHEL / Fedora / openSUSE |
104 | Copr |
105 | ✔️ |
106 | Dušan Simić |
107 |
108 | Follow the instructions below
109 | |
110 |
111 |
112 | AppImage |
113 | GitHub |
114 | ✔️ |
115 | Official |
116 |
117 | Follow the instructions below
118 | |
119 |
120 |
121 | Flatpak |
122 | Flathub |
123 | ✔️ |
124 | Dušan Simić |
125 |
126 | Visit Flathub and follow the instructions
127 | |
128 |
129 |
130 | Snap |
131 | Snapcraft |
132 | ✔️ |
133 | Official |
134 |
135 | Visit Snapcraft and follow the instructions
136 | |
137 |
138 |
139 |
140 | #### Installation using deb-get:
141 |
142 | * Download and install [deb-get](https://github.com/wimpysworld/deb-get).
143 | * Run `deb-get install caprine`.
144 |
145 | Note: deb-get is 3rd party software, not to be associated with apt-get.
146 |
147 | #### APT repository (Gemfury):
148 |
149 | Run the following command to add it:
150 |
151 | ```sh
152 | wget -q -O- https://raw.githubusercontent.com/sindresorhus/caprine/main/packages/deb/addRepo.sh | sudo bash
153 | ```
154 |
155 | Alternatively (for advanced users):
156 | ```sh
157 | # Add the repository
158 | echo "deb [trusted=yes] https://apt.fury.io/lefterisgar/ * *" > \
159 | /etc/apt/sources.list.d/caprine.list
160 |
161 | # Update the package indexes
162 | sudo apt update
163 |
164 | # Install Caprine
165 | sudo apt install caprine
166 | ```
167 |
168 |
169 | #### Copr:
170 |
171 | For Fedora / RHEL:
172 |
173 | ```sh
174 | sudo dnf copr enable dusansimic/caprine
175 | sudo dnf install caprine
176 | ```
177 |
178 | For openSUSE:
179 | - Create a new file in `/etc/zypp/repos.d/caprine.repo`.
180 | - Copy the contents of [this file](https://copr.fedorainfracloud.org/coprs/dusansimic/caprine/repo/opensuse-tumbleweed/dusansimic-caprine-opensuse-tumbleweed.repo) and paste them into the file you just created.
181 |
182 | Alternatively use the following one-liner:
183 | ```sh
184 | curl -s https://copr.fedorainfracloud.org/coprs/dusansimic/caprine/repo/opensuse-tumbleweed/dusansimic-caprine-opensuse-tumbleweed.repo | sudo tee /etc/zypp/repos.d/caprine.repo
185 | ```
186 |
187 | #### AppImage:
188 |
189 | [Download](https://github.com/sindresorhus/caprine/releases/latest) the `.AppImage` file.
190 |
191 | Make it [executable](https://discourse.appimage.org/t/how-to-run-an-appimage/80):
192 |
193 | ```sh
194 | chmod +x Caprine-2.xx.x.AppImage
195 | ```
196 |
197 | Then run it!
198 |
199 | #### About immutable Linux distributions:
200 | [Fedora Silverblue](https://silverblue.fedoraproject.org), [Fedora Kinoite](https://kinoite.fedoraproject.org), [EndlessOS](https://endlessos.com), [CarbonOS](https://carbon.sh) and other immutable distributions only support Flatpak and/or AppImage.*
201 |
202 | *Note: On some distributions Flatpak must be [pre-configured manually](https://flatpak.org/setup).*
203 |
204 | ### Windows
205 |
206 |