This is a rewrite of my Basic-Matics app to Python
This is the start of a migration from my original app written in Kotlin to Python, as I found many bugs and I want to rewrite it in a simpler way.
To start the app, from the home directory, run:
python -m basicmatics
or python3 if you're in UNIX.
This is a very simple app, and it is everything clear when you run it.
It is pretty clear and intuitive, so you won't have problem.
In case you want it installed on your system, you'll need Python 3.7 or higher and Tkinter for building this app.
First, install the Python Tkinter module:
You'll need Debian Buster / Ubuntu 18.04 (Bionic) or higher
sudo apt install python3-tk python3-pil.imagetk python3-ttkthemes python3-distro
You'll need Fedora 29 or higher, or update your python3 package
sudo dnf install python3-tkinter
yum install tkinter
If you have python 3.6 installed, update it with
sudo pacman -S python
Then, install tkinter:
sudo pacman -S tk
Then, install python package build
:
pip3 install --upgrade build
Then, cd
to the project directory and run
python3 -m build && pip3 install basicmatics-$VERSION-py3-none-any.whl
You just need to install build module
pip install --upgrade build
Then, cd
to the project directory and run
python -m build && pip install basicmatics-$VERSION-py3-none-any.whl
Now it's successfully installed!