2015-03-31 11:07:22 +00:00
|
|
|
<% content_for(:title, 'Installation') %>
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
2016-07-13 11:22:54 +00:00
|
|
|
## Python package
|
|
|
|
|
|
|
|
asciinema is available on [PyPI](https://pypi.python.org/pypi/asciinema) and can
|
|
|
|
be installed with pip (Python 3 required):
|
|
|
|
|
|
|
|
sudo pip3 install asciinema
|
|
|
|
|
|
|
|
## Native packages
|
2015-03-31 11:07:22 +00:00
|
|
|
|
|
|
|
### Arch Linux
|
|
|
|
|
2017-01-24 21:48:20 +00:00
|
|
|
pacman -S asciinema
|
2015-03-31 11:07:22 +00:00
|
|
|
|
2015-09-19 09:07:35 +00:00
|
|
|
### Debian
|
|
|
|
|
|
|
|
sudo apt-get install asciinema
|
|
|
|
|
2015-03-31 11:07:22 +00:00
|
|
|
### Fedora
|
|
|
|
|
2016-05-22 19:44:14 +00:00
|
|
|
For Fedora < 22:
|
|
|
|
|
2015-03-31 11:07:22 +00:00
|
|
|
sudo yum install asciinema
|
|
|
|
|
2016-05-22 19:44:14 +00:00
|
|
|
For Fedora >= 22:
|
|
|
|
|
|
|
|
sudo dnf install asciinema
|
|
|
|
|
2015-06-24 20:33:07 +00:00
|
|
|
### FreeBSD
|
|
|
|
|
2015-06-25 13:34:13 +00:00
|
|
|
Ports:
|
|
|
|
|
2015-06-24 20:33:07 +00:00
|
|
|
cd /usr/ports/textproc/asciinema && make install
|
|
|
|
|
2015-06-25 13:34:13 +00:00
|
|
|
Packages:
|
|
|
|
|
|
|
|
pkg install asciinema
|
|
|
|
|
2015-03-31 11:07:22 +00:00
|
|
|
### Gentoo Linux
|
|
|
|
|
2016-08-21 23:19:00 +00:00
|
|
|
emerge -av asciinema
|
2015-03-31 11:07:22 +00:00
|
|
|
|
2015-08-07 09:09:17 +00:00
|
|
|
### NixOS / Nix
|
2015-06-23 07:48:06 +00:00
|
|
|
|
2015-08-07 09:09:17 +00:00
|
|
|
nix-env -i go1.4-asciinema
|
2015-06-23 07:48:06 +00:00
|
|
|
|
2017-01-12 17:54:53 +00:00
|
|
|
### OpenBSD
|
|
|
|
|
2017-01-12 17:56:14 +00:00
|
|
|
pkg_add asciinema
|
2017-01-12 17:54:53 +00:00
|
|
|
|
2016-07-13 11:24:05 +00:00
|
|
|
### OS X
|
|
|
|
|
|
|
|
Homebrew:
|
|
|
|
|
|
|
|
<%= render 'install_homebrew' %>
|
|
|
|
|
|
|
|
MacPorts:
|
|
|
|
|
|
|
|
sudo port selfupdate && sudo port install asciinema
|
|
|
|
|
|
|
|
Nix:
|
|
|
|
|
|
|
|
nix-env -i go1.4-asciinema
|
|
|
|
|
2015-03-31 11:07:22 +00:00
|
|
|
### Ubuntu
|
|
|
|
|
|
|
|
sudo apt-add-repository ppa:zanchey/asciinema
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install asciinema
|
|
|
|
|
|
|
|
### No package for your operating system?
|
|
|
|
|
2015-06-23 21:41:07 +00:00
|
|
|
If you use other operating system and you can build a native package
|
|
|
|
for it then don't hesitate, do it and let us know.
|
2015-03-31 11:07:22 +00:00
|
|
|
|
2016-07-13 11:22:54 +00:00
|
|
|
## Running latest version from master
|
2015-06-23 21:41:07 +00:00
|
|
|
|
2016-07-13 11:22:54 +00:00
|
|
|
If none of the above works for you (or you want to help with development) just
|
|
|
|
clone the repo and run asciinema straight from the checkout:
|
2015-06-23 21:41:07 +00:00
|
|
|
|
2016-07-13 11:22:54 +00:00
|
|
|
git clone https://github.com/asciinema/asciinema.git
|
|
|
|
cd asciinema
|
|
|
|
python3 -m asciinema --version
|