Skip to content

Instalations

alfredredbird edited this page Sep 19, 2024 · 10 revisions

Installations

In this section of the WiKi, we will cover different installation options.

MacOS/Linux

The installation of Tookie on MacOS and Linux should be the same on all versions/Distributions. To install Tookie is fairly simple and as follows:

git clone https://github.com/alfredredbird/tookie-osint
cd tookie-osint && sudo pip install -r requirements.txt
python3 tookie-osint

If no Errors appear, you have successfully installed Alfred. Kudos! :D

Windows

To install Tookie on Windows, it's basically the same as it is on MacOS or Linux. If you dont have git installed on your machine you can skip to the installing without Git section.

Installing With Git

git clone https://github.com/alfredredbird/tookie-osint
cd tookie-osint && sudo pip install -r requirements.txt
python3 tookie-osint

Installing Without Git

If you dont have Git installed on your machine, you need to download the proper installer from Here Once it is installed you may continue the installation with:

git clone https://github.com/alfredredbird/tookie-osint
cd tookie-osint && sudo pip install -r requirements.txt
python3 tookie-osint

Termux/Android

To install Tookie on Termux, you will have to clone two separate Github Repos. The First One you have to clone is found Here Why do we need it? It's because Termux doesn't have a root we have to sort of mod it to do so. The last repo we need is of course Tookie :D Tookie's Termux installation guide was provided by u/EliteGreyIT Kudos to them. Alternatively, you could install the fork from u/EliteGreyIT and run it as well.(Its found Here)

Full instructions for installing Tookie on rootless.

 $ apt update && apt upgrade 
 $ apt install git
 $ termux-setup-storage 

After That, Run to install sudo-without-root

 $ git clone http://github.com/virtual-designer/termux-sudo-without-root  
 $ cd termux-sudo-without-root/  
 $ apt install ./sudo.deb 

By default, you won't asked for a password if the user is 'root' Run

 $ cd /data/data/com.termux/files/usr/etc
 $ nano sudoers

Now, this will throw an error. [The file is unwritable!]
So, We need to change the permissions of sudoers file.

 $ chmod +w sudoers  

Add the following line sudoers file.

 $ <username>|All|passwd  

Close nano and enter a new password.

 $ passwd

Enter a new password.

 $ ln -s storage/downloads Downloads  

Now Install Tookie

 $ git clone https://github.com/alfredredbird/tookie-osint
 $ cd tookie-osint && sudo pip install -r requirements.txt
 $ python3 brib.py   

Kudos! Tookie on rootless Termux with sudo-without-root install complete. :D

Ish/iPhone

To install Tookie on a iOS or iPadOS, you need to install ISH from the App Store. Once done, you must install git by typing:

apk add git

Once it has finished, you have to add pip and python with

apk add pip
apk add python

After they are installed, you can finish the installation by typing the following:

git clone https://github.com/alfredredbird/tookie-osint
cd tookie-osint && sudo pip install -r requirements.txt
python3 brib.py

Reinstalling Tookie

If there is a problem with Tookie, sometimes it's best to uninstall it and reinstall it. Reinstalling is as follows.

cd ..
sudo rm -rf /tookie-osint

Kudos! Tookie is gone. You may reinstall Tookie with the above methods. :D