Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dudynets/numerical-methods-labs-tkinter
Labs for Numerical Methods course at Ivan Franko Lviv National University.
https://github.com/dudynets/numerical-methods-labs-tkinter
interpolation labs linear-algebra matplotlib numerical-methods numpy python tkinter university
Last synced: about 2 months ago
JSON representation
Labs for Numerical Methods course at Ivan Franko Lviv National University.
- Host: GitHub
- URL: https://github.com/dudynets/numerical-methods-labs-tkinter
- Owner: dudynets
- License: mit
- Created: 2023-11-19T02:18:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-03T22:38:28.000Z (about 1 year ago)
- Last Synced: 2023-12-03T23:23:54.490Z (about 1 year ago)
- Topics: interpolation, labs, linear-algebra, matplotlib, numerical-methods, numpy, python, tkinter, university
- Language: Python
- Homepage:
- Size: 285 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Лабораторні роботи з чисельних методів
## Building
1. Install [PyInstaller](https://www.pyinstaller.org/)
```bash
pip install pyinstaller
```2. Build executable
```bash
# MacOS
pyinstaller --onefile -w src/main.py -n 'Чисельні методи' -i src/assets/icon.icns
```
```bash
# Windows
pyinstaller --onefile -w src/main.py -n 'Чисельні методи' -i src/assets/icon.ico
```3. Run executable from `dist` folder
## Running
1. Install [Python](https://www.python.org/downloads/)
2. Install required packages
```bash
pip install -r requirements.txt
```3. Run the main script
```bash
python src/main.py
```