> For the complete documentation index, see [llms.txt](https://yeetedwin.gitbook.io/multiploit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yeetedwin.gitbook.io/multiploit/master.md).

# Installation

## How to install multiploit?

To install any python package, pip has to be installed. To install pip simply:

* Copy the code from this [link](https://bootstrap.pypa.io/get-pip.py)
* Paste it onto a new python file named "get-pip.py"
* Enter the directory using cd
* Type in the following below on Command Prompt (Windows) or Terminal (macOS/Linux):

```
$    python get-pip.py
```

{% hint style="info" %}
This will executed the code and pip will be installed
{% endhint %}

After this you can easily install multiploit by typing in the following:

```
$    python -m pip install multiploit
```

Now you have installed multiploit... One way to test it is by doing what's below

{% tabs %}
{% tab title="Python" %}
{% code title="main.py" %}

```python
import multiploit
multiploit.version()
```

{% endcode %}
{% endtab %}
{% endtabs %}

If it gives out a number with decimals,

{% hint style="info" %}
which is the version of the multiploit package
{% endhint %}

then that means the package is installed and working.

Now you can start coding with multiploit simplified fuctionalities
