Skip to content

Install

ktx edited this page Oct 1, 2020 · 7 revisions

Requirements

h8mail 2.0 only requires the python requests module to run.
h8mail requires python 3.6 or higher. Use python --version to know which version you are running.

Stable release (best)

To install h8mail, run this command in your terminal:

$ pip3 install h8mail

And that's basically it.
This is the preferred method to install h8mail, as it will always install the most recent stable release.

Please note:
If you don't have pip installed, this Python installation guide can guide you through the process.
For troubleshooting, check the Troubleshooting section.

h8mail-install.gif The above illustration showcases installing h8mail using --user


From sources

The sources for h8mail can be downloaded from the Github repo.

You can either clone the public repository:

$ git clone git:/khast3x/h8mail

Or download the tarball:

$ curl  -OL https:/khast3x/h8mail/tarball/master

Next, decompress the downloaded archive.
Once you have a copy of the source, you can install it with:

$ cd h8mail/
$ python3 setup.py install
$ h8mail -h

Or just running it as a module:

$ cd h8mail/
$ python3 -m h8mail -h

Docker

$ docker run -ti kh4st3x00/h8mail -h
$ docker run -ti kh4st3x00/h8mail -t [email protected]

Update

$ pip3 install --upgrade h8mail

Use --user at the end if getting a permission message from pip

Clone this wiki locally