The How to Setup section assumes you have installed and/or are familiar with the following:
- Git
You can find how to install git Here
- Anaconda
You can find how to install Anaconda Here
- PyQt5
You can find a comprehensive tutorial on PyQt5 Here
$ git clone https://github.com/programmer290399/Connecting-PyQt5-to-Sqlite.git
$ conda create --name <name_of_your_env> --file requirements.txt
$ conda activate <name_of_your_env>
$ python sa_version.py
NOTES :
- This repo contains the
form.ui
file which can be used withQt 5 Designer
.- Command to convert a
.ui
file to.py
is : >bash >$ python -m PyQt5.uic.pyuic -x [FILENAME].ui -o [FILENAME].py >