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

https://github.com/xor-bits/cas-calculator


https://github.com/xor-bits/cas-calculator

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

Minimal notepad and LaTeX calculator
designed to work with "Kaavaeditori"
https://github.com/digabi/rich-text-editor

### Requires: Python 3
note: usage of the python virtual env is optional but recommended

### Install/Update/Launch for lazy
#### Linux/MacOS
```
./launch.sh
```
#### Windows (CMD)
```
launch.bat
```

### Installation:
#### Linux/MacOS
```
python -m venv __venv__
source __venv__/bin/activate
pip install -r requirements.txt
```

#### Windows (CMD)
```
python -m venv __venv__
"__venv__\Scripts\activate.bat"
pip install -r requirements.txt
```
##### or (PowerShell)
```
python -m venv __venv__
"__venv__\Scripts\activate.ps1"
pip install -r requirements.txt
```

### Usage:
Inside the python virtual env
```
python main.py
```
#### To activate the python virtual env:
##### Linux/MacOS
```
source __venv__/bin/activate
```

##### Windows (CMD)
```
"__venv__\Scripts\activate.bat"
```
##### or (PowerShell)
```
"__venv__\Scripts\activate.ps1"
```

### Demo:
![Demo](/github/demo_main.png)