nfstream/docs/source/installation.rst
2020-02-26 01:35:26 +01:00

36 lines
No EOL
760 B
ReStructuredText

###################
Installing nfstream
###################
************
Installation
************
**using pip**
Binary installers for the latest released version are available:
.. code-block:: bash
python3 -m pip install nfstream
**from source: linux**
.. code-block:: bash
sudo apt-get install autoconf automake libtool pkg-config libpcap-dev
git clone https://github.com/aouinizied/nfstream.git
cd nfstream
python3 -m pip install -r requirements.txt
python3 setup.py install
**from source: macos**
.. code-block:: bash
brew install autoconf automake libtool pkg-config
git clone https://github.com/aouinizied/nfstream.git
cd nfstream
python3 -m pip install -r requirements.txt
python3 setup.py install