diff options
| author | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-24 17:17:01 +0300 |
|---|---|---|
| committer | Павел Жуков <33721692+LeaveMyYard@users.noreply.github.com> | 2023-05-24 17:17:01 +0300 |
| commit | cb5dc3268413897d9a9f0a36506fcc45f663b97f (patch) | |
| tree | 6747cee576738e173482261b2761421371c4f57b /build_linux.sh | |
| parent | a2036a0b04cb4b57c23e29c92925265cfea401a8 (diff) | |
Add scripts for building executables
Diffstat (limited to 'build_linux.sh')
| -rwxr-xr-x | build_linux.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/build_linux.sh b/build_linux.sh new file mode 100755 index 0000000..4292fb5 --- /dev/null +++ b/build_linux.sh @@ -0,0 +1,20 @@ +# Remove old build +rm -rf build +rm -rf dist + +# MacOS Build first + +# Active venv +# python -m pip install -r requirements.txt +pip install pyinstaller +apt-get install binutils + +# source .venv/bin/activate + +# Build +pyinstaller krr.py +cd dist +# zip -r "krr-linux-v1.1.0.zip" krr + +# Deactivate venv +# deactivate
\ No newline at end of file |
