Merge branch 'master' of github.com:MISP/PyMISP

pull/551/head
Raphaël Vinot 2020-02-06 10:39:27 +01:00
commit 97c1f30f1e
1 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ pip3 install pymisp
``` ```
git clone https://github.com/MISP/PyMISP.git && cd PyMISP git clone https://github.com/MISP/PyMISP.git && cd PyMISP
git submodule update --init git submodule update --init
pip3 install -I .[fileobjects,neo,openioc,virustotal] pip3 install -I .[fileobjects,openioc,virustotal]
``` ```
## Installing it with virtualenv ## Installing it with virtualenv
@ -40,10 +40,10 @@ It is recommended to use virtualenv to not polute your OS python envirenment.
``` ```
pip3 install virtualenv pip3 install virtualenv
git clone https://github.com/MISP/PyMISP.git && cd PyMISP git clone https://github.com/MISP/PyMISP.git && cd PyMISP
python3 -m venv ./ python3 -m venv ./venv
source venv/bin/activate source venv/bin/activate
git submodule update --init git submodule update --init
pip3 install -I .[fileobjects,neo,openioc,virustotal] pip3 install -I .[fileobjects,openioc,virustotal]
``` ```
## Running the tests ## Running the tests