云网牛站
所在位置:首页 > Linux教程 > 在Linux上安装CouchPotato(支持Ubuntu,Debian,Arch,Fedora,SUSE)

在Linux上安装CouchPotato(支持Ubuntu,Debian,Arch,Fedora,SUSE)

2019-06-10 15:58:44作者:叶云稿源:云网牛站

本文介绍在Linux操作系统上安装CouchPotato及卸载CouchPotato的方法,支持众多主流的Linux发行版,如Ubuntu、Debian、Arch Linux、Fedora、OpenSUSE。

 

安装CouchPotato的依赖项

如果你计划在Linux上使用CouchPotato,唯一的选择是从源代码构建,先安装以下依赖项,要使依赖项工作,请启动终端窗口并运行相关命令。

1、Ubuntu

sudo apt install git python2

sudo pip install --upgrade pyopenssl

2、Debian

sudo apt-get install git python

sudo pip install --upgrade pyopenssl

3、Arch Linux

sudo pacman -S git python2

sudo pip install --upgrade pyopenssl

4、Fedora

sudo dnf install git python2

sudo pip install --upgrade pyopenssl

5、OpenSUSE

sudo zypper install git python

sudo pip install --upgrade pyopenssl

6、通用Linux说明

CouchPotato在依赖方面不需要那么多就能在Linux上运行,运行软件所需的唯一真正工具是用于下载代码的Git工具,以及Python 2.7或更高版本,参考在CentOS 7/Ubuntu 16.04/Debian 9/macOS上安装Python 3.6的方法

 

下载源代码并安装CouchPotato

CouchPotato应用程序的源代码托管在Github上,从存储库中获取代码非常简单,为此,启动终端窗口并使用git clone命令:

git clone https://github.com/CouchPotato/CouchPotatoServer.git couchpotato

将代码下载到Linux系统后,使用mv命令将代码从主目录(~/)移动到Root文件系统的/opt/文件夹中:

sudo mv couchpotato /opt/

一旦代码在Linux系统的/opt/目录中,就可以使用以下命令启动Couch Potato服务器:

cd /opt

./CouchPotato.py

在Linux上安装CouchPotato(支持Ubuntu,Debian,Arch,Fedora,SUSE)

在启动时,CouchPotato应立即加载到新的浏览器选项卡中,如果要停止服务器,请随时转到当前运行该软件的终端窗口,然后按Ctrl+C。

 

卸载CouchPotato

需要从Linux系统中卸载CouchPotato吗?首先,启动一个终端窗口,然后使用su或sudo -s命令将终端会话提升为Root:

su -

或:

sudo -s

将终端窗口移动到CouchPotato代码所在的/opt文件夹:

cd /opt/

使用rm命令删除代码文件夹:

rm -rf couchpotato

随着文件夹的消失,从Linux系统中卸载CouchPotato就算成功了。

 

使用CouchPotato

当应用程序在浏览器窗口中启动并运行时,将看到配置向导,使用向导并使用它来配置CouchPotato的设置:

在Linux上安装CouchPotato(支持Ubuntu,Debian,Arch,Fedora,SUSE)

配置完所有内容后,选择页面底部的“I’m ready to start the awesomeness”按钮。

 

相关主题

使用Deluge在Ubuntu 16.04上安装CouchPotato

精选文章
热门文章