mirror of
https://github.com/ciromattia/kcc
synced 2025-12-12 17:26:23 +00:00
10 lines
309 B
Bash
Executable File
10 lines
309 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# PREPARE PYTHON ENV
|
|
# conda create -n pyqt5 python=3.7
|
|
# source activate pyqt5
|
|
# pip install pyqt5
|
|
|
|
pyuic5 gui/KCC.ui --from-imports > kindlecomicconverter/KCC_ui.py
|
|
pyuic5 gui/MetaEditor.ui --from-imports > kindlecomicconverter/KCC_ui_editor.py
|
|
pyrcc5 gui/KCC.qrc > kindlecomicconverter/KCC_rc.py |