mention virtualenv

mide make sense for people who want to use it with virtualenv
pull/301/head
Alexander J 2018-11-23 09:29:19 +01:00 committed by GitHub
parent 72ac4fa4c7
commit 03055a5d22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -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