Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Linux Install Guide

Jessi edited this page Sep 16, 2017 · 6 revisions

Linux Install

It is recommended to use a virtualenv for any install of a standalone python app. This will help keep your systems python package possibly clashing with any others, in this case, Gazee's

virtualenv

You will need python 3.6 for this. Verify your system has it installed and you are using it to run Gazee.

You will also need to verify you have Unrar installed on your system and it's visible to the user running Gazee.

See here for further instructions on unrar

https://github.com/hubbcaps/gazee#unrar-downloads

Centos 7

For Centos/RPM Distros, you will need to install unrar from the RPMFusion Repos, unar from the default repositories provided with most RPM distros will NOT WORK.

To enable on Centos use the following command provided by rpmfusion

sudo yum localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm

Then proceed with installing unrar

sudo yum install unrar

After this you will be ready to start the very simple gazee installation

git clone https://github.com/hubbcaps/gazee.git /path/to/your/install/gazee
cd gazee
pip3 install -r requirements.txt
python3.6 Gazee.py

Go to http://your-ip:4242

Default username and password for the web interface:

  • Username: admin
  • Password: gazee

Proceed to the settings page and change your admin pass, and enter the path to your comic library and optionally your Mylar DB for better comic info extraction.

Debian/Ubuntu

Unrar needs to be installed from your distros repos:

sudo apt-get install unrar

After this you will be ready to start the very simple gazee installation

git clone https://github.com/hubbcaps/gazee.git /path/to/your/install/gazee
cd gazee
pip3 install -r requirements.txt
python3 Gazee.py

Go to http://your-ip:4242

Default username and password for the web interface:

  • Username: admin
  • Password: gazee

Proceed to the settings page and change your admin pass, and enter the path to your comic library and optionally your Mylar DB for better comic info extraction.

Run as a Daemon

If you would like to run Gazee as a daemon, simply start gazee with the -d flag

python3 Gazee.py -d
Clone this wiki locally