Updated Readme with the installation on Windows

This commit is contained in:
Ahmed Aboul-Ela 2016-06-13 13:38:50 +03:00 committed by GitHub
parent 9c4107c223
commit ba54eabcfa
1 changed files with 11 additions and 1 deletions

View File

@ -25,22 +25,32 @@ Other python versions maybe not **supported** at the moment.
####Requests library (http://docs.python-requests.org/en/latest/) ####Requests library (http://docs.python-requests.org/en/latest/)
- Install for Windows:
```
- c:\python27\python.exe -m pip install requests
```
- Install for Ubuntu/Debian: - Install for Ubuntu/Debian:
``` ```
sudo apt-get install python-requests sudo apt-get install python-requests
``` ```
- Install for Centos/Redhat: - Install for Centos/Redhat:
``` ```
sudo yum install python-requests sudo yum install python-requests
``` ```
- Install using pip: - Install using pip on Linux:
``` ```
sudo pip install requests sudo pip install requests
``` ```
####dnspython library (http://www.dnspython.org/) ####dnspython library (http://www.dnspython.org/)
- Install for Windows:
```
- c:\python27\python.exe -m pip install dnspython
```
- Install for Ubuntu/Debian: - Install for Ubuntu/Debian:
``` ```