Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplified pip usage and README #8

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,9 @@ install `kivy`, `pygame` and `pycairo` python packages. Here is an example of st

python3 -m pip install --upgrade pip

- Install "kivy", pycairo" and "pygame" python packages:
- Install required python packages "kivy", pycairo" and "pygame" (and optional cairocffi):

pip3 install kivy

pip3 install pygame

pip3 install pycairo

- I have received a report that "cairocffi" python package is required as well. On my Mac things work fine without it, however, if your machine needs it, then you can install it with:

pip3 install cairocffi
pip3 install -r requirements.txt

Once you have `python` and the required python packages installed, you can run `hm-panelizer` via command line
(i.e. terminal) by `cd`'ing into the **hm-panelizer** folder, then issuing `python3 main.py` command.
Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
kivy
pygame
pycairo
cairocffi