From 1e46961dada3aab9d21af5fe3c9770c429196b53 Mon Sep 17 00:00:00 2001 From: Hannah Ward Date: Wed, 6 Mar 2019 13:54:54 +0000 Subject: [PATCH] Move mysqlclient instruction above pip operation --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d2f5172..7acacf5 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ along with a callback for when data is sent to the TAXII Server's inbox. ```bash git clone https://github.com/MISP/MISP-Taxii-Server cd MISP-Taxii-Server + +apt-get install libmysqlclient-dev # for mysql_config pip3 install -r REQUIREMENTS.txt ``` @@ -47,10 +49,6 @@ Now it's time to create all your SQL tables. Luckily OpenTaxii comes with comman You're going to want to export your configuration file to a variable as well. ```bash -# Install mysqlclient for python3 if you haven't already done so -apt-get install libmysqlclient-dev # for mysql_config -pip3 install mysqlclient - # An example of this config is in the config directory export OPENTAXII_CONFIG=/path/to/config.yaml export PYTHONPATH=.