From 401b838deb097e795913863e187ddfb6c0450e6e Mon Sep 17 00:00:00 2001 From: Jiri Date: Sat, 12 Oct 2019 13:36:06 +0200 Subject: [PATCH 1/2] fix the dnspython version --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a553077..daf149a 100644 --- a/README.md +++ b/README.md @@ -61,13 +61,19 @@ Run ```sudo bash setup.sh``` #### To address the issue with ImportError: No module named dns follow these steps +~~git clone https://github.com/rthalley/dnspython; +cd dnspython/; +python setup.py install~~ + + +#### As DNSPYTHON is now in version 2.x and rely on python3, that cannot be used for warberry. to fix that issue it is needed to deploy older version via pip (1.16.0 - the latest with python2) + ``` -git clone https://github.com/rthalley/dnspython -cd dnspython/ -python setup.py install +pip install dnspython==1.16.0 ``` + ### Reporting Download the **/RESULTS** folder into /var/www, /Library/Webserver/Documents/ or XAMPP web directory depending on your OS and setup. From 99e89f49d16144ccc9e1f005921f5ebd8a6d086e Mon Sep 17 00:00:00 2001 From: Jiri Date: Sat, 12 Oct 2019 13:37:08 +0200 Subject: [PATCH 2/2] dnspython version fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index daf149a..63d2ce4 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ cd dnspython/; python setup.py install~~ -#### As DNSPYTHON is now in version 2.x and rely on python3, that cannot be used for warberry. to fix that issue it is needed to deploy older version via pip (1.16.0 - the latest with python2) +#### As DNSPYTHON is now in version 2.x and it relies on python3, that cannot be used for warberry anymore. to fix that issue it is needed to deploy older version via pip (1.16.0 - the latest with python2) ``` pip install dnspython==1.16.0