Jump to content

Anki: Difference between revisions

From NixOS Wiki
imported>Tamiyo
initiall info: how to install and general info
 
Hannses (talk | contribs)
m change ankisyncd to anki-sync-server
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Anki is a spaced repetition system (SRS) commonly used to learn new languages. Information is placed on individual flashcards, which are sorted into decks. Anki is extensible using [[Python]] addons.
[https://apps.ankiweb.net/ Anki] is a spaced repetition system (SRS) commonly used to learn new languages. Information is placed on individual flashcards, which are sorted into decks. Anki is extensible using [[Python]] addons.


In addition to the desktop software, Anki has an iOS app, Android app, and web interface available. Decks/flashcards can be synced using a self hosted instance of <code>ankisyncd</code> or an AnkiWeb account.
In addition to the desktop software, Anki has an iOS app, Android app, and web interface available. Decks/flashcards can be synced using a self hosted instance of <code>anki-sync-server</code> or an AnkiWeb account.


== Installation ==
== Installation ==
<code>anki-bin</code> is recommended over <code>anki</code>, due to <code>anki</code> being out of date (at the time of writing). Using old versions of <code>anki</code> may lead to decks being incompatible with newer versions.
<code>anki-bin</code> and <code>anki</code> are available.


;NixOs
;NixOs
Line 13: Line 13:
;nix-shell
;nix-shell
<code>$ nix-shell -p anki-bin</code>
<code>$ nix-shell -p anki-bin</code>
[[Category:Applications]]

Latest revision as of 23:47, 15 February 2025

Anki is a spaced repetition system (SRS) commonly used to learn new languages. Information is placed on individual flashcards, which are sorted into decks. Anki is extensible using Python addons.

In addition to the desktop software, Anki has an iOS app, Android app, and web interface available. Decks/flashcards can be synced using a self hosted instance of anki-sync-server or an AnkiWeb account.

Installation

anki-bin and anki are available.

NixOs
environment.systemPackages = [
  pkgs.anki-bin
];
nix-shell

$ nix-shell -p anki-bin