48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
markdown:
|
|
|
|
# Getting started
|
|
|
|
## 1. Install recorder
|
|
|
|
The latest __stable version__ of asciinema can always be installed or updated
|
|
to via [pip](http://www.pip-installer.org/en/latest/index.html) (prefered) or
|
|
easy\_install:
|
|
|
|
sudo pip install --upgrade asciinema
|
|
|
|
Alternatively:
|
|
|
|
sudo easy_install asciinema
|
|
|
|
Or, you can install the __development version__ directly from GitHub:
|
|
|
|
sudo pip install --upgrade https://github.com/sickill/asciinema/tarball/master
|
|
|
|
Arch Linux users can install the
|
|
[AUR](https://aur.archlinux.org/packages/asciinema/) package:
|
|
|
|
yaourt -S asciinema
|
|
|
|
## 2. Record
|
|
|
|
Go to your terminal and run the following command:
|
|
|
|
$ asciinema rec
|
|
|
|
New shell will be spawned and everything you do in it will get recorded.
|
|
When you're finished simply exit the shell either by typing `exit`
|
|
or hitting `<C-d>`.
|
|
|
|
## 3. Create profile (optional)
|
|
|
|
If you want your recordings to be assigned to your asciinema profile and to be
|
|
able to edit/delete them run this and follow the instructions:
|
|
|
|
$ asciinema auth
|
|
|
|
If you skip this step now, you can always run above command later and all
|
|
previously recorded asciicasts will automatically get assigned to your new
|
|
profile.
|
|
|
|
Btw, see <a href="/~sickill">sickill's profile</a>.
|