Skip to content

Commit

Permalink
update README.md and shebang with pip3 and python3 respectively
Browse files Browse the repository at this point in the history
  • Loading branch information
guallo committed Jun 6, 2021
1 parent 9e5211c commit 5eaea92
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -2,7 +2,7 @@

To install:
```shell
$ pip install memory-monitor-cli
$ pip3 install memory-monitor-cli
```

Monitor the memory with a time window of `1` minute (`m`) and refresh each second (`60` times per minute):
Expand All @@ -17,4 +17,4 @@ $ mm-cli run --time-window 1 --time-unit m --frequency 60 --stream-to-file memor
and (maybe later) show the stream:
```shell
$ mm-cli show --stream-from-file memory-usage.gz
```
```
2 changes: 1 addition & 1 deletion memory_monitor_cli/__init__.py
Expand Up @@ -11,7 +11,7 @@
from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler

__version__ = '0.1.2'
__version__ = '0.1.3'
__author__ = 'The memory-monitor-cli Authors'

logger = logging.getLogger(__name__)
Expand Down
2 changes: 2 additions & 0 deletions memory_monitor_cli/__main__.py
@@ -1,3 +1,5 @@
#!/usr/bin/env python3

from . import main

if __name__ == '__main__':
Expand Down

0 comments on commit 5eaea92

Please sign in to comment.