Fixing some typos for better and ...
and adding how to install the best libraries to coloring in windows
This commit is contained in:
parent
9f69fdb000
commit
2b39192bee
18
README.md
18
README.md
|
@ -30,9 +30,8 @@ These dependencies can be installed using the requirements file:
|
|||
|
||||
- Installation on Windows:
|
||||
```
|
||||
c:\python27\python.exe -m pip install -r requirements.txt
|
||||
python -m pip install -r requirements.txt
|
||||
```
|
||||
|
||||
- Installation on Linux
|
||||
```
|
||||
sudo pip install -r requirements.txt
|
||||
|
@ -44,7 +43,7 @@ Alternatively, each module can be installed independently as shown below.
|
|||
|
||||
- Install for Windows:
|
||||
```
|
||||
c:\python27\python.exe -m pip install requests
|
||||
python -m pip install requests
|
||||
```
|
||||
|
||||
- Install for Ubuntu/Debian:
|
||||
|
@ -66,7 +65,7 @@ sudo pip install requests
|
|||
|
||||
- Install for Windows:
|
||||
```
|
||||
c:\python27\python.exe -m pip install dnspython
|
||||
python -m pip install dnspython
|
||||
```
|
||||
|
||||
- Install for Ubuntu/Debian:
|
||||
|
@ -96,6 +95,17 @@ sudo yum install python-argparse
|
|||
sudo pip install argparse
|
||||
```
|
||||
|
||||
**And for coloring in windows install the following libraries**
|
||||
```
|
||||
python -m pip install win_unicode_console colorama
|
||||
```
|
||||
|
||||
*Note:To get the path of python.exe for the windows installation process use :*
|
||||
```
|
||||
import sys
|
||||
sys.executable
|
||||
```
|
||||
|
||||
##Usage
|
||||
|
||||
Short Form | Long Form | Description
|
||||
|
|
Loading…
Reference in New Issue