From 03055a5d227f2b9fdc8101fc37959c61fb8d50f0 Mon Sep 17 00:00:00 2001 From: Alexander J Date: Fri, 23 Nov 2018 09:29:19 +0100 Subject: [PATCH] mention virtualenv mide make sense for people who want to use it with virtualenv --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 543940b..de41e1a 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,18 @@ git submodule update --init pip3 install -I .[fileobjects,neo,openioc,virustotal] ``` +## Installing it with virtualenv + +It is recommended to use virtualenv to not polute your OS python envirenment. +``` +pip3 install virtualenv +git clone https://github.com/MISP/PyMISP.git && cd PyMISP +python3 -m venv ./ +source venv/bin/activate +git submodule update --init +pip3 install -I .[fileobjects,neo,openioc,virustotal] +``` + ## Running the tests ```bash