You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,40 @@
1
1
# SUPREMEMOOD
2
2
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
+
3
38
## Windows build instructions
4
39
### Kivy 2.0
5
40
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