From 7fcb216f9df14cdf293207511c9835c8f4cfa61b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 27 Feb 2017 11:43:46 +0100 Subject: [PATCH] Install PyMISP with python3 by default. Because reasons. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 204a434..734a38c 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ PyMISP allows you to fetch events, add or update events/attributes, add or updat ## Install from pip ``` -pip install pymisp +pip3 install pymisp ``` ## Install the lastest version from repo ``` git clone https://github.com/CIRCL/PyMISP.git && cd PyMISP -python setup.py install +python3 setup.py install ``` ## Samples and how to use PyMISP @@ -47,7 +47,7 @@ fetch the last 10 events published. ``` cd examples -python last.py -l 10 +python3 last.py -l 10 ``` ## Documentation