centos7安装录像工具asciinema

使用文档

https://asciinema.org/docs/usage

源码方式运行(最新版本)

#Wget源码方式运行(最新版本)
#安装epel发行包
yum -y install epel-release
#安装python34
yum -y install python34 unzip wget
#安装pip和setuptools
curl -O https://bootstrap.pypa.io/get-pip.py
/usr/bin/python3.4 get-pip.py
#下载源码
wget https://github.com/asciinema/asciinema/archive/develop.zip
unzip develop.zip
cd asciinema-develop/
#测试版本
python3 -m asciinema --version
#安装
python3 setup.py install
#用命令测试版本
asciinema --version

录像如下:

centos7安装录像工具asciinema

yum方式安装(1.4版本)

#安装方式运行(版本老1.4)
yum -y install epel-release
yum -y install asciinema
asciinema --version

录像如下:

centos7安装录像工具asciinema