Skip to content

Commit 7267248

Browse files
fix: fixed all build errors for ubuntu and arch linux
1 parent 5788a7f commit 7267248

File tree

3 files changed

+116
-5
lines changed

3 files changed

+116
-5
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
ubuntu: main.c
55
sudo apt install pip
66
sudo apt install pipenv
7-
pipenv shell
8-
pip3 install -r requirements.txt --break-system-packages
9-
mkdir -p bin
7+
pipenv install --python 3.13
8+
pipenv run pip3 install -r requirements.txt
9+
pipenv install PyInstaller
1010
sudo gcc main.c -o /usr/local/bin/QuickOverflow
1111
chmod +x search.py
12-
pyinstaller search.py --onefile
12+
pipenv run pyinstaller --onefile --name search search.py
1313
sudo mv "dist/search" "/usr/local/bin"
1414

1515
arch_linux: main.c

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "pypi"
55

66
[packages]
77
pyoverflow3 = "*"
8-
PyInstaller = "*"
8+
pyinstaller = "*"
99

1010
[dev-packages]
1111

Pipfile.lock

Lines changed: 111 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)