Skip to content

Commit

Permalink
Fix installation deps make and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVenturini committed Oct 16, 2019
1 parent dfa1068 commit 0db89b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Then, all dependencies will be downgraded - or upgrade - to best satisfies range
To install, clone this repo and tipe:

```bash
pip3 install -r requirements.txt
make executable
sudo make install
```
Expand Down Expand Up @@ -100,7 +99,7 @@ Suport any types of range:
- ...

## Dependencies
All dependencies are installed when `pip3 install -r requirements.txt`.
All dependencies are installed when `make executable`.
```bash
pip3 install requests
pip3 install semantic_version
Expand Down
5 changes: 4 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
all: deps executable install

deps:
pip3 install -r requirements.txt

install:
cp dist/lamp/* /usr/bin/ -r

executable:
executable: deps
pyinstaller lamp.py -y

0 comments on commit 0db89b9

Please sign in to comment.