Requirements - congosto/t-hoarder_kit GitHub Wiki

SUMARY

Git app

It is necessary to install the git application to have a version control that allows the automatic upgrading of t-hoarder_kit

Windows environment

The application is available at Downloading Git

Select the default options offered by the installer program. Above all you have to check "use Git from de Windows Command promt"

git

linux environment

If you want to install the basic Git tools on Linux via a binary installer, you can generally do so through the basic package-management tool that comes with your distribution. If you’re on Fedora for example, you can use dnf:

  $ sudo dnf install git-all

If you’re on a Debian-based distribution like Ubuntu, try apt-get:

  $ sudo apt-get install git-all

For more options, there are instructions for installing on several different Unix flavors on the Git website, at http://git-scm.com/download/linux.

Python 2.7.12 or higher

Windows environment

Download the latest stable version 2.x. By clicking on the download button.

python

Do not Download 3.x because T-hoarder_kit does not work with python version

https://www.python.org/downloads/release/python-2713/

linux environment

In recent Linux distributions, the latest versions of Python are installed by default. To verify if the installed version is greater than 2.12 type:

  $ Python

This command starts the Python interpreter and indicates which is the default version, for example

  $ Python 2.7.12 (default, Nov 19 2016, 06:48:10)

If the default version was 3.x it would have to be changed to 2.12 or higher. If the default version is lower than 2.12 you would have to install an updated version of Python or upgrade the linux distribution

Tweepy

T-hoarder_kit uses the tweepy library so it needs to be installed

Windows environment

Open a terminal (cmd) and type

  pip install tweepy

Linux environment

Open a terminal and type

 $  sudo pip install tweepy