Skip to content

Commit

Permalink
pip installation
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMili committed Nov 26, 2016
1 parent ac00f7e commit e82042c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
WhatInstalled is a simple tool to retrieve what you installed using command line.

## Installation
After cloning this repository simply run :
You can install it with pip :
```bash
pip install whatinstalled
```
Or clone this repository and simply run :
```bash
cd whatinstalled/
pip install -e .
Expand Down
4 changes: 2 additions & 2 deletions whatinstalled.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

def whatinstalled():
parser = argparse.ArgumentParser(description='A simple tool to retrieve what you installed using CLI')
parser.add_argument('-f', '--file', dest='bash_file', type=str, help="custom file to parse", default="~/.bash_history")
parser.add_argument('-p', '--profile', dest='profile', type=str, help="specific profile to use", default=None)
parser.add_argument('-f', '--file', dest='bash_file', type=str, help="custom file to parse", default="~/.bash_history")
parser.add_argument('-p', '--profile',dest='profile', type=str, help="specific profile to use", default=None)
args = parser.parse_args()

global keywords
Expand Down

0 comments on commit e82042c

Please sign in to comment.