Skip to content

Commit

Permalink
Updates README install instructions for Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dyld-w committed Nov 12, 2024
1 parent 272a2a1 commit a74a156
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# SUPREMEMOOD

## Updated Non-Conda Build Instructions
**Note:** Must use Git Bash or WSL on Windows for compatibility with Make


Create virtual environment:
```bash
python -m venv .venv
```

Activate venv:
- Windows:
```bash
source .venv/Scripts/activate
```

- Mac:
```bash
source .venv/bin/activate
```

Install requirements:
```bash
pip install -r requirements.txt
```

Go to package directory:
```bash
cd package
```

Use Makefile to call PyInstaller (The Makefile will check for MacOS or Windows or other & call PyInstaller or output message if OS not supported):
```bash
make
```

## Windows build instructions
### Kivy 2.0
Pysinstaller 5.0 took out some tk hooks that kivy 2.0 depends on. kivy 2.1 fixes that, and could be used with pyinstaller 5.0, but there's a mouse issue with kivy 2.1.
Expand Down

0 comments on commit a74a156

Please sign in to comment.