From 5843a62d5ead5d679eaba5f9e4cc0d02daaa3cfe Mon Sep 17 00:00:00 2001 From: Yoshiko2 Date: Thu, 17 Mar 2022 02:11:51 +0800 Subject: [PATCH] Update Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index fdc4e2a..97e0b6d 100644 --- a/Makefile +++ b/Makefile @@ -7,16 +7,16 @@ SHELL = /bin/bash .DEFAULT: make make: - #@echo "[+]make prepare-dev" - #sudo apt-get -y install python3.7 python3-pip - #pip3 install -r requirements.txt - #pip3 install pyinstaller + @echo "[+]make prepare-dev" + #sudo apt-get -y install python3 python3-pip + pip3 install -r requirements.txt + pip3 install pyinstaller #@echo "[+]Set CLOUDSCRAPER_PATH variable" #export cloudscraper_path=$(python3 -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1) @echo "[+]Pyinstaller make" - pyinstaller --onefile AV_Data_Capture.py --hidden-import ADC_function.py --hidden-import core.py \ + pyinstaller --onefile Movie_Data_Capture.py --hidden-import ADC_function.py --hidden-import core.py \ --add-data "`python3 -c 'import cloudscraper as _; print(_.__path__[0])' | tail -n 1`:cloudscraper" \ --add-data "`python3 -c 'import opencc as _; print(_.__path__[0])' | tail -n 1`:opencc" \ --add-data "Img:Img" \