From d40d67143605870eabb5c8fd889a2ab4484e1a3d Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Wed, 13 Jul 2016 13:22:54 +0200 Subject: [PATCH] Update installation instructions to include pip method --- app/views/docs/installation.html.md | 32 +++++++++++++---------------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/app/views/docs/installation.html.md b/app/views/docs/installation.html.md index cb20b92..50d034b 100644 --- a/app/views/docs/installation.html.md +++ b/app/views/docs/installation.html.md @@ -2,7 +2,14 @@ # Installation -## Using package manager +## 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 ### OS X @@ -65,22 +72,11 @@ Packages: 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. -## From source - -If you have Go toolchain installed you can install latest (master) version with: - - go get github.com/asciinema/asciinema - -Refer to the -[README file](https://github.com/asciinema/asciinema/blob/master/README.md) -for detailed instructions on building from source. - -## Download static binary - -There are prebuilt static binaries for Mac OS X, Linux and FreeBSD. You can -[download](https://github.com/asciinema/asciinema/releases) one for your -platform and place it in your `$PATH`. +## Running latest version from master -You can use the following snippet to fetch and run our install script, which automates this: +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: - curl -sL https://asciinema.org/install | sh + git clone https://github.com/asciinema/asciinema.git + cd asciinema + python3 -m asciinema --version