Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed: Updated usage section #71

Merged
merged 1 commit into from
Jun 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,30 @@ Application in python that draws graphs of analog signals, developed for univers
<img width="1192" alt="screen_flow_module" src="https://github.com/bartekbiz/ctplot/assets/95227378/0139e562-7a0c-48e6-b71a-f1830c6da4c1">


## Installation

## Usage
To run program you simply need to download most recent version of repo and cd into directory
```bash
git clone https://github.com/bartekbiz/ctplot
cd ctplot
python -m venv .
pip install -r requirements.txt
```

Create venv in the directory and activate venv (or skip if you already have required packages on your pc)
```bash
python -m venv venv
```

Activate venv on windows
```bash
.\venv\Scripts\Activate.ps1
```

And finally you can run
```
python3 main.py
```



## Functions

Selection of counting modes (Discplacement/Flow)
Expand Down
Loading