From ba54eabcfa799bf421eafb9db0dfd338c6b362c4 Mon Sep 17 00:00:00 2001 From: Ahmed Aboul-Ela Date: Mon, 13 Jun 2016 13:38:50 +0300 Subject: [PATCH] Updated Readme with the installation on Windows --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 10a9236..ea73b34 100644 --- a/README.md +++ b/README.md @@ -25,22 +25,32 @@ Other python versions maybe not **supported** at the moment. ####Requests library (http://docs.python-requests.org/en/latest/) +- Install for Windows: +``` +- c:\python27\python.exe -m pip install requests +``` + - Install for Ubuntu/Debian: ``` sudo apt-get install python-requests ``` + - Install for Centos/Redhat: ``` sudo yum install python-requests ``` -- Install using pip: +- Install using pip on Linux: ``` sudo pip install requests ``` ####dnspython library (http://www.dnspython.org/) +- Install for Windows: +``` +- c:\python27\python.exe -m pip install dnspython +``` - Install for Ubuntu/Debian: ```