diff --git a/linux_make.py b/linux_make.py new file mode 100755 index 0000000..7d062e3 --- /dev/null +++ b/linux_make.py @@ -0,0 +1,6 @@ +import os +os.system("pyinstaller --onefile AV_Data_Capture.py --hidden-import ADC_function.py --hidden-import core.py") +os.system("rm -rf ./build") +os.system("rm -rf ./__pycache__") +os.system("rm -rf AV_Data_Capture.spec") +os.system("echo '[Make]Finish'")