Installation¶
This part of the documentation covers the installation of SSH-MITM. The first step to using any software package is getting it properly installed.
Install with pip¶
To install SSH-MITM, simply run this command in your terminal of choice:
1 | $ python -m pip install ssh-mitm
|
Install from Source Code¶
SSH-MITM is actively developed on GitHub, where the code is always available.
You can either clone the public repository:
1 | $ git clone git://github.com/ssh-mitm/ssh-mitm.git
|
Or, download the tarball:
1 | $ curl -L https://github.com/ssh-mitm/ssh-mitm/archive/master.tar.gz | tar xz
|
Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:
1 2 | $ cd ssh-mitm-master
$ python -m pip install .
|