Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```