Skip to content

Commit

Permalink
Added Readme.md For MailGrab
Browse files Browse the repository at this point in the history
  • Loading branch information
OCEANOFANYTHINGOFFICIAL authored Jan 2, 2022
1 parent 8303063 commit b2aff84
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,34 @@ Install Python 3.9 In Linux.
```
sudo apt install software-properties-common
```

![enter image description here](https://cloudlinuxtech.com/ezoimgfmt/i1.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/install-software-properties-common-ubuntu.png?resize=1024,360&ssl=1&ezimgfmt=ng:webp/ngcb55)

2. ##### Step2- Add Deadsnakes Ppa Repository To Install Latest Python 3.9
Open Terminal And Enter The Following Command
```
sudo add-apt-repository ppa:deadsnakes/ppa
```

![add-deadsnakes-ppa](https://cloudlinuxtech.com/ezoimgfmt/i2.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/add-deadsnake-ppa-for-latest-python-1024x66.png?resize=1024%2C66&ezimgfmt=rs:640x41/rscb55/ng:webp/ngcb55)


3. ##### Step3- Update Ubuntu/Kali Repository
```
sudo apt update
```

![sudo-apt-update](https://cloudlinuxtech.com/ezoimgfmt/i1.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/sudo-apt-update.png?resize=918%2C282&ezimgfmt=rs:640x197/rscb55/ng:webp/ngcb55)


4. ##### Step4- Install latest Python 3 (Version 3.9.0)
```
sudo apt install python3.9
```

![How-to-install-Python-in-Linux](https://cloudlinuxtech.com/ezoimgfmt/i0.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/how-to-install-python-linux.png?resize=922%2C391&ezimgfmt=rs:640x271/rscb55/ng:webp/ngcb55)


5. ##### Step5- Check python version
```
python --version
Expand All @@ -56,51 +63,65 @@ By-default _python3-pip_ is not installed in Ubuntu 20.04 and installing it from
```
sudo apt install python3-pip
```

![How-to-install-Python3-pip](https://cloudlinuxtech.com/ezoimgfmt/i2.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/Install-python3-pip-using-apt-1024x425.png?resize=1024%2C425&ezimgfmt=rs:640x266/rscb55/ng:webp/ngcb55)


2. ##### Step2- Check python3-pip version

Here pip version 20.0.2 got installed and we need to **upgrade** it to version 20.3.3. Installing package 3.8 from **apt** will help to meet all dependent packages and libraries which will be required for **pip 20.3.3**. If you will skip this step, you may get dependent modules error.


![check-latest-pip-version](https://cloudlinuxtech.com/ezoimgfmt/i2.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/check-pip3-version-1.png?resize=862%2C147&ezimgfmt=rs:640x109/rscb55/ng:webp/ngcb55)


3. ##### Step3- Install **curl** command first.

If curl is already installed your system, you can skip this step. Most of the Ubuntu 20.04 don't have curl installed by default. So use **apt install** command to install it. **Curl** is required to execute _step 4_.

```
sudo apt install curl
```

![install-curl](https://cloudlinuxtech.com/ezoimgfmt/i2.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/Install-curl-package-1.png?resize=883%2C416&ezimgfmt=rs:640x301/rscb55/ng:webp/ngcb55)


4. ##### Step4- Download pip from **bootstrap.pypa.io** website
Now you need to **download get pip** from bootstrap.pypa.io website using **curl** command as shown in image.
```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
```

![download-pip-script](https://cloudlinuxtech.com/ezoimgfmt/i0.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/Download-python3-pip-1024x167.png?resize=1024%2C167&ezimgfmt=rs:640x104/rscb55/ng:webp/ngcb55)


5. ##### Step5- Upgrade python3-pip version to pip-20.3.3

Run **python3.9** command to execute "get-pip.py" package file you downloaded. It will automatically download and install the latest pip in your Ubuntu/Kali Linux.
```
sudo python3.9 get-pip.py
```

![Install-python3-pip-ubuntu-20.04](https://cloudlinuxtech.com/ezoimgfmt/i2.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/Install-latest-pip-20.3.3-ubuntu-20.04-1024x229.png?resize=1024%2C229&ezimgfmt=rs:640x143/rscb55/ng:webp/ngcb55)


6. ##### Step6 (optional)- Add pip3.9 directory to PATH.
This can be achieved by editing **/etc/environment** file using your favourite editor. Otherwise, exporting and appending "**PATH**" variable for the local user profile will also do the trick. Make sure you add _~/.local/bin/_ in PATH variable.
```
export PATH=~/.local/bin/:$PATH
```

![add-pip-path-variable](https://cloudlinuxtech.com/ezoimgfmt/i0.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/Add-pip-path-variable-2-1024x79.png?resize=1024%2C79&ezimgfmt=rs:640x49/rscb55/ng:webp/ngcb55)


7. ##### Step7- Check pip version
```
pip3.9 --version
```

![check-pip3.9-version](https://cloudlinuxtech.com/ezoimgfmt/i2.wp.com/cloudlinuxtech.com/wp-content/uploads/2021/01/check-pip3.9-version.png?resize=1012%2C111&ezimgfmt=rs:640x70/rscb55/ng:webp/ngcb55)


**Congrats**!! till this point you have installed latest Python 3.9.0 and pip 20.3.3 successfully.

#### Install Required Modules
Expand Down Expand Up @@ -130,4 +151,4 @@ You Can Provide A Huge List Of Urls In A File Named `_inputUrls.txt`
. It Will Automatically Detect The File In Current Directory And Will Harvest From The Emails One By One!
***~~This Is A Sicret Please Dont Tell It To Anyone!~~***
# Attribute
## This Tool Mail Grab Is Made ***By OCEAN OF ANYTHING*** (***Nakshatra Ranjan Saha***)
## This Tool Mail Grab Is Made ***By OCEAN OF ANYTHING*** (***Nakshatra Ranjan Saha***)

0 comments on commit b2aff84

Please sign in to comment.