阿里云ECS centos系统主机安装you-get详细过程记录

摘要 一. 关于you-get     You-Get视频下载工具     You-Get是一个基于Python 3的视频下载工具     几乎支持目前主要的国内视频网站     项目主页:http://www.soimort.org/you-get     GitHub地址:https://github...

一. 关于you-get

You-Get视频下载工具

You-Get是一个基于Python 3的视频下载工具

几乎支持目前主要的国内视频网站

项目主页:http://www.soimort.org/you-get

GitHub地址:https://github.com/soimort/you-get

二、 you-get安装

下载最新you-get:

wget https://github.com/soimort/you-get/archive/master.zip

解压到指定目录

unzip -o -d /opt/soft/you-get /opt/soft/master.zip

you-get安装需要python3环境的支持

具体安装步骤如下:

1、CentOS6.5 安装Python 的依赖包

yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel

2、下载Python3.5的源码包并编译

wget https://www.python.org/ftp/python/3.5.0/Python-3.5.0.tgz
tar xf Python-3.5.0.tgz
cd Python-3.5.0
./configure --prefix=/usr/local --enable-shared
make
make install
ln –s /usr/local/bin/python3 /usr/bin/python3

3、在运行Python之前需要配置库:

echo /usr/local/lib >> /etc/ld.so.conf.d/local.conf
ldconfig

4、运行演示:

python3 --version
Python 3.5.0

5、删除编译Python时所需要的库

yum groupremove "Development tools" --remove-leaveas
yum remove zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel --remove-leaves

6、设置别名方便使用

alias py=python3

三. you-get使用

执行如下命令:
查看视频基本信息
python3 /opt/soft/you-get/you-get-master/you-get -i  http://www.yicai.com/videos/2016/01/4735362.html
下载视频:
python3 /opt/soft/you-get/you-get-master/you-get http://www.yicai.com/videos/2016/01/4735362.html

  1. da shang
    donate-alipay
               donate-weixin weixinpay

发表评论↓↓