1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-27 10:54:14 +01:00

dependencies, install instructions

This commit is contained in:
trevorbryant 2020-05-15 16:13:38 -04:00
parent 82ea5799d8
commit 995ddd320f

View File

@ -25,19 +25,21 @@ To showcase a little bit of the cool functionality, I have recorded a short
## Install
### Dependencies
The python3 development files are required for building python dependencies. All of the dependencies are managed through `pip`.
To install **pwncat** into its own python virtual environment:
``` bash
git clone https://github.com/calebstewart/pwncat/ # get pwncat
cd pwncat
sudo apt-get install python3-devel # install dependencies
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt
.venv/bin/python3 setup.py install
. .venv/bin/activate # activate the virtual environment
```
$ sudo apt-get install python3-devel # install dependencies
$ python3 -m venv .venv
$ . .venv/bin/activate
$ pip install -r requirements.txt
$ python setup.py install
## Usage