mirror of
https://github.com/nfstream/nfstream.git
synced 2026-05-19 07:54:25 +00:00
35 lines
553 B
ReStructuredText
35 lines
553 B
ReStructuredText
###################
|
|
Installing nfstream
|
|
###################
|
|
|
|
*************
|
|
Prerequisites
|
|
*************
|
|
|
|
.. code-block:: bash
|
|
|
|
apt-get install libpcap-dev
|
|
|
|
************
|
|
Installation
|
|
************
|
|
|
|
**using pip**
|
|
|
|
Binary installers for the latest released version are available:
|
|
|
|
.. code-block:: bash
|
|
|
|
pip3 install nfstream
|
|
|
|
|
|
**from source**
|
|
|
|
If you want to build nfstream on your local machine:
|
|
|
|
.. code-block:: bash
|
|
|
|
apt-get install autogen
|
|
git clone https://github.com/aouinizied/nfstream.git
|
|
cd nfstream
|
|
python3 setup.py install
|