Learn how to install anki with the command sudo apt-get install anki on Ubuntus.
Ads
Quick installation of anki:
Step 1: Update system:
sudo apt-get update
Step 2: Install: anki
Ater updaing the OS run following command to install the packae:
sudo apt-get install anki
Package Details | |
Package: | anki |
Version: | 1.2.9-2 |
Maintainer: | Ubuntu Developers |
Home page: | http://ankisrs.net/ |
Description: | extensible flashcard learning program Anki is a program designed to help you remember facts (such as words and phrases in a foreign language) as easily, quickly and efficiently as possible. To do this, it tracks how well you remember each fact, and uses that information to optimally schedule review times. . Besides text, it supports sounds, images and rendering TeX snippets in the cards. It can synchronize card decks to a server so that you can review the deck on other computers, a web interface or mobile devices, for which versions of Anki are also available. Complete card decks offered by other users can be downloaded the same way. . Anki is extensible with plugins which can be downloaded and installed from the menu. While Anki can be used for studying anything, plugins are available with special features designed to make studying Japanese and English easier: integrated dictionary lookups, missing kanji reports, and more. Homepage: http://ankisrs.net/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/misc |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If anki is not installed on your compter then the command 'dpkg -L anki' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L anki Package `anki' is not installed. Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing anki:
After system update use the following command to install anki:
sudo apt-get install anki
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the anki from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the anki following command is used:
sudo apt-get remove anki
Following command is used to remove the anki package along with its dependencies:
sudo apt-get remove --auto-remove anki
This will remove anki and all its dependent packages which is no longer needed in the system.
Completely removing anki with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge anki
or you can use following command also:
sudo apt-get purge --auto-remove anki
Above command will remove all the configuration files and data associated with anki package. You can can't recover the delete data, so, use this command with care.