Anki
Anki is a program which makes remembering things easy through spaced repetition. Because it's a lot more efficient than traditional study methods, you can either greatly decrease your time spent studying, or greatly increase the amount you learn.
Anyone who needs to remember things in their daily life can benefit from Anki. Since it is content-agnostic and supports images, audio, videos and scientific markup (via LaTeX), the possibilities are endless.
Installation⚑
Install the dependencies:
sudo apt-get install zstd
Download the latest release package.
Open a terminal and run the following commands, replacing the filename as appropriate:
tar xaf Downloads/anki-2.1.XX-linux-qt6.tar.zst
cd anki-2.1.XX-linux-qt6
sudo ./install.sh
Anki workflow⚑
How long to do study sessions⚑
I have two study modes:
- When I'm up to date with my cards, I study them until I finish, but usually less than 15 minutes.
- If I have been lazy and haven't checked them in a while (like now) I assume I'm not going to see them all and define a limited amount of time to review them, say 10 to 20 minutes depending on the time/energy I have at the moment.
The relief thought you can have is that as long as you keep a steady pace of 10/20 mins each day, inevitably you'll eventually finish your pending cards as you're more effective reviewing cards than entering new ones
What to do with "hard" cards⚑
If you're afraid to be stuck in a loop of reviewing "hard" cards, don't be. In reality after you've seen that "hard" card three times in a row you won't mark it as hard again, because you will remember. If you don't maybe there are two reasons:
- The card has too much information that should be subdivided in smaller cards.
- You're not doing a good process of memorizing the contents once they show up.
What to do with unneeded cards⚑
You have three options:
- Suspend: It stops it from showing up permanently until you reactivate it through the browser.
- Bury: Just delays it until the next day.
- Delete: It deletes it forever.
Unless you're certain that you are not longer going to need it, suspend it.
What to do when you need to edit a card but don't have the time⚑
You can mark it with a red flag so that you remember to edit it the next time you see it.
Interacting with python⚑
Configuration⚑
Although there are some python libraries:
I think the best way is to use AnkiConnect as they won't publish an API soon. If AnkiConnect fails you can try AnkiAPI
The installation process is similar to other Anki plugins and can be accomplished in three steps:
- Open the Install Add-on dialog by selecting Tools | Add-ons | Get Add-ons... in Anki.
- Input
2055492159
into the text box labeled Code and press the OK button to proceed. - Restart Anki when prompted to do so in order to complete the installation of Anki-Connect.
Anki must be kept running in the background in order for other applications to be able to use Anki-Connect. You can verify that Anki-Connect is running at any time by accessing localhost:8765
in your browser. If the server is running, you will see the message Anki-Connect displayed in your browser window.
Usage⚑
Every request consists of a JSON-encoded object containing an action
, a version
, contextual params
, and a key
value used for authentication (which is optional and can be omitted by default). Anki-Connect will respond with an object containing two fields: result
and error
. The result
field contains the return value of the executed API, and the error
field is a description of any exception thrown during API execution (the value null
is used if execution completed successfully).
Sample successful response:
{"result": ["Default", "Filtered Deck 1"], "error": null}
Samples of failed responses:
{"result": null, "error": "unsupported action"}
{"result": null, "error": "guiBrowse() got an unexpected keyword argument 'foobar'"}
For compatibility with clients designed to work with older versions of Anki-Connect, failing to provide a version field in the request will make the version default to 4.
To make the interaction with the API easier, I'm using the next adapter:
class Anki:
"""Define the Anki adapter."""
def __init__(self, url: str = "http://localhost:8765") -> None:
"""Initialize the adapter."""
self.url = url
def requests(
self, action: str, params: Optional[Dict[str, str]] = None
) -> Response:
"""Do a request to the server."""
if params is None:
params = {}
response = requests.post(
self.url, json={"action": action, "params": params, "version": 6}
).json()
if len(response) != 2:
raise Exception("response has an unexpected number of fields")
if "error" not in response:
raise Exception("response is missing required error field")
if "result" not in response:
raise Exception("response is missing required result field")
if response["error"] is not None:
raise Exception(response["error"])
return response["result"]
You can find the full adapter in the ebops project.
Decks⚑
Get all decks⚑
With the adapter:
self.requests("deckNames")
Or with curl
:
curl localhost:8765 -X POST -d '{"action": "deckNames", "version": 6}'
Create a new deck⚑
self.requests("createDeck", {"deck": deck})
Configure self hosted synchronization⚑
NOTE: In the end I dropped this path and used Ankidroid alone with syncthing as I didn't need to interact with the decks from the computer. Also the ecosystem of synchronization in Anki at 2023-11-10 is confusing as there are many servers available, not all are compatible with the clients and Anki itself has released it's own so some of the community ones will eventually die.
Install the server⚑
Install the official sync server⚑
Using docker-compose⚑
On the server that holds Anki:
- Create the data directories:
mkdir -p /data/apps/anki/data chown -R 1000:1000 /data/apps/anki/data
- Copy the
docker/docker-compose.yaml
to/data/apps/anki
.
---
version: "3"
services:
anki:
image: jeankhawand/anki-sync-server:24.04.1
container_name: anki
restart: always
volumes:
- data:/home/anki/.syncserver
networks:
- nginx
env_file:
- .env
networks:
nginx:
external:
name: nginx
volumes:
data:
driver: local
driver_opts:
type: none
o: bind
device: /data/apps/anki/data
.env
file with your credentials SYNC_USER1=user:password
/data/apps/anki/src
* Copy the service/anki.service
into /etc/systemd/system/
[Unit]
Description=anki
Requires=docker.service
After=docker.service
[Service]
Restart=always
User=root
Group=docker
WorkingDirectory=/data/apps/anki
TimeoutStartSec=100
RestartSec=2s
ExecStart=/usr/local/bin/docker-compose -f docker-compose.yaml up
ExecStop=/usr/local/bin/docker-compose -f docker-compose.yaml down
[Install]
WantedBy=multi-user.target
swag/anki.conf
into your nginx site-confs directory. # make sure that your dns has a cname set for anki and that your anki container is not using a base url
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name anki.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf
#include /config/nginx/ldap.conf;
location / {
# enable the next two lines for http auth
#auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth
#auth_request /auth;
#error_page 401 =200 /login;
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_anki anki;
proxy_pass http://$upstream_anki:8080;
}
}
docker-compose up --build
* Start the service systemctl start anki
* If needed enable the service systemctl enable anki
. Update⚑
- Go to the
/data/apps/anki/src
directory - Update the changes:
git pull
- Check which is the latest version
- Update the
docker-compose.yaml
- Stop the service
systemctl start anki
- Rebuild the docker:
docker-compose up --build
- Start the service
systemctl start anki
Using docker⚑
You can use the official image. It doesn't support the latest
tag, but opening an issue is a bit cumbersome
Building the image⚑
Use the output of anki --version
to deduce the <version>
git clone https://github.com/ankitects/anki
cd anki/docs/syncserver/
docker build --no-cache --build-arg ANKI_VERSION=<version> -t anki-sync-server .
Once done with build, you can proceed with running this image with the following command:
# this will create anki server
docker run -d -e "SYNC_USER1=admin:admin" -p 8080:8080 --name anki-sync-server anki-sync-server
However, if you want to have multiple users, you have to use the following approach:
# this will create anki server with multiple users
docker run -d -e "SYNC_USER1=test:test" -e "SYNC_USER2=test2:test2" -p 8080:8080 --name anki-sync-server anki-sync-server
Moreover, you can pass additional env vars mentioned here
The server needs to store a copy of your collection and media in a directory. By default it is ~/.syncserver
; you can change this by defining a `SYNC_BASE`` environmental variable. This must not be the same location as your normal Anki data folder, as the server and client must store separate copies.
The server listens on an unencrypted HTTP connection, so it's not a good idea to expose it directly to the internet. You'll want to either restrict usage to your local network, or place some form of encryption in front of the server, such as a VPN, or a HTTPS reverse proxy.
You can define SYNC_HOST
and SYNC_PORT
to change the host and port that the server binds to.
Using pip⚑
To avoid downloading desktop Anki's GUI dependencies, you can run a standalone Anki sync server using a Python package downloaded from PyPI instead. Make sure you have Python 3.9+ installed.
python3 -m venv ~/syncserver
~/syncserver/bin/pip install anki
SYNC_USER1=user:pass ~/syncserver/bin/python -m anki.syncserver
Install the ankicommunity server⚑
I'm going to install anki-sync-server
as it's simpler to djankiserv
:
-
Create the data directories:
mkdir -p /data/apps/anki/data
-
Copy the
docker/docker-compose.yaml
to/data/apps/anki
.--- version: "3" services: anki: image: kuklinistvan/anki-sync-server:latest container_name: anki restart: always networks: - nginx volumes: - data:/app/data networks: nginx: external: name: nginx volumes: data: driver: local driver_opts: type: none o: bind device: /data/apps/anki
- Copy the nginx config into your
site-confs
:
# make sure that your dns has a cname set for anki and that your anki container is not using a base url
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name anki.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
# enable for ldap auth, fill in ldap details in ldap.conf
#include /config/nginx/ldap.conf;
location / {
# enable the next two lines for http auth
#auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth
#auth_request /auth;
#error_page 401 =200 /login;
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_anki anki;
proxy_pass http://$upstream_anki:27701;
}
}
- Copy the
service/anki.service
into/etc/systemd/system/
[Unit] Description=anki Requires=docker.service After=docker.service [Service] Restart=always User=root Group=docker WorkingDirectory=/data/apps/anki # Shutdown container (if running) when unit is started TimeoutStartSec=100 RestartSec=2s # Start container when unit is started ExecStart=/usr/local/bin/docker-compose -f docker-compose.yaml up # Stop container when unit is stopped ExecStop=/usr/local/bin/docker-compose -f docker-compose.yaml down [Install] WantedBy=multi-user.target
- Start the service
systemctl start anki
- If needed enable the service
systemctl enable anki
. - Create your user by:
- Getting a shell inside the container:
docker exec -it anki sh
- Create the user:
./ankisyncctl.py adduser kuklinistvan
ankisyncctl.py
has more commands to manage your users:
adduser <username>
: add a new userdeluser <username>
: delete a userlsuser
: list userspasswd <username>
: change password of a user
Monitor the server⚑
In theory the docker has a HEALTHCHECK but it's a lie, /health
returns a 404 and is marked as unhealthy. The official docker doesn't yet support it, so we'd have to wait. I thought of opening an issue but you need to register on their forum.
They don't expose an API, and I haven't found any endpoint to be able to monitor it with the blackbox exporter, so I'll only monitor the logs
Monitor the logs⚑
Configure AnkiDroid⚑
- Add the dns you configured in your nginx reverse proxy into Advanced → Custom sync server.
- Then enter the credentials you created before in Advanced -> AnkiWeb account
Configure Anki⚑
Install addon from ankiweb (support 2.1)
- On add-on window,click Get Add-ons and fill in the textbox with the code 358444159
- There,you get add-on custom sync server redirector,choose it.Then click config below right
- Apply your server dns address
- Press Sync in the main application page and enter your credentials
Running Anki in headless mode⚑
If you want to interact with anki directly without opening the GUI application you're out of luck. You could try to interact with the database directly but that's prone to errors if you use more than one client.