mirror of https://github.com/MISP/PyMISP
mention virtualenv
mide make sense for people who want to use it with virtualenvpull/301/head
parent
72ac4fa4c7
commit
03055a5d22
12
README.md
12
README.md
|
@ -29,6 +29,18 @@ git submodule update --init
|
||||||
pip3 install -I .[fileobjects,neo,openioc,virustotal]
|
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
|
## Running the tests
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in New Issue