We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc00501 commit bd867b1Copy full SHA for bd867b1
1 file changed
autotune/README.md
@@ -1,16 +1,28 @@
1
# Installation using a virtual environment
2
-## Create a new venv
+
3
+## Using Poetry (recommended)
4
+### Create a new environment and install the dependencies
5
+1. Get [poetry](https://python-poetry.org/docs/)
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
15
```
16
python3.9 -m venv virtualenv-test
17
source virtualenv-test/bin/activate
18
19
-## Install the dependencies
20
+### Install the dependencies
21
-pip3 install scipy pyulog control pyqt5
22
+pip3 install numpy scipy pyulog control pyqt5
23
24
-## Start the GUI
25
26
27
python3 autotune.py
28
0 commit comments