We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d0a4f1 commit d58ed62Copy full SHA for d58ed62
Makefile
@@ -1,7 +1,10 @@
1
#Makefile for QuickOverflow
2
#Update 2.1.0 - Added make to replace install.sh
3
#type make into terminal to install QuickOverflow
4
-QuickOverflow: main.c
+ubuntu: main.c
5
+ sudo apt install pip
6
+ sudo apt install pipenv
7
+ pipenv shell
8
pip3 install -r requirements.txt --break-system-packages
9
mkdir -p bin
10
sudo gcc main.c -o /usr/local/bin/QuickOverflow
@@ -18,7 +21,7 @@ arch_linux: main.c
18
21
pipenv install --python 3.13
19
22
pipenv shell
20
23
pip3 install -r requirements.txt
- pyinstaller search.py --onefile
24
+ PyInstaller search.py --onefile
25
sudo mv "dist/search" "/usr/local/bin"
26
27
#to remove the binaries, use this
0 commit comments