File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Installation using a virtual environment
2
- ## Create a new venv
2
+
3
+ ## Using Poetry (recommended)
4
+ ### Create a new environment and install the dependencies
5
+ 1 . Get [ poetry] ( https://python-poetry.org/docs/ ) : ` curl -sSL https://install.python-poetry.org | python3 - `
6
+ 2 . In this directory, simply run ` poetry install `
7
+
8
+ ### Start the GUI
9
+ ```
10
+ poetry run python3 autotune.py
11
+ ```
12
+
13
+ ## Using venv
14
+ ### Create a new environment
3
15
```
4
16
python3.9 -m venv virtualenv-test
5
17
source virtualenv-test/bin/activate
6
18
```
7
19
8
- ## Install the dependencies
20
+ ### Install the dependencies
9
21
```
10
- pip3 install scipy pyulog control pyqt5
22
+ pip3 install numpy scipy pyulog control pyqt5
11
23
```
12
24
13
- ## Start the GUI
25
+ ### Start the GUI
14
26
```
15
27
python3 autotune.py
16
28
```
You can’t perform that action at this time.
0 commit comments