Skip to content

Commit a74a156

Browse files
committed
Updates README install instructions for Makefile
1 parent 272a2a1 commit a74a156

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# SUPREMEMOOD
22

3+
## Updated Non-Conda Build Instructions
4+
**Note:** Must use Git Bash or WSL on Windows for compatibility with Make
5+
6+
7+
Create virtual environment:
8+
```bash
9+
python -m venv .venv
10+
```
11+
12+
Activate venv:
13+
- Windows:
14+
```bash
15+
source .venv/Scripts/activate
16+
```
17+
18+
- Mac:
19+
```bash
20+
source .venv/bin/activate
21+
```
22+
23+
Install requirements:
24+
```bash
25+
pip install -r requirements.txt
26+
```
27+
28+
Go to package directory:
29+
```bash
30+
cd package
31+
```
32+
33+
Use Makefile to call PyInstaller (The Makefile will check for MacOS or Windows or other & call PyInstaller or output message if OS not supported):
34+
```bash
35+
make
36+
```
37+
338
## Windows build instructions
439
### Kivy 2.0
540
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.

0 commit comments

Comments
 (0)