File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,39 @@ csv ファイルをリアルタイムに読み込み、解析・表示する PyQ
40
40
% git clone https://github.com/kiyu-git/Arduino-Sensor-Data-Viewer
41
41
```
42
42
43
+ ### Raspberry pi
44
+
45
+ - Python のインストール
46
+
47
+ ```
48
+ $ curl https://pyenv.run | bash
49
+ $ python -V
50
+ Python 3.9.2
51
+ ```
52
+
53
+ - PyQt のインストール
54
+
55
+ ```
56
+ $ sudo apt install libffi-dev
57
+ $ sudo apt install libatlas-base-dev
58
+ $ sudo apt install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tool
59
+ ```
60
+
61
+ - pip package のインストール
62
+
63
+ ```
64
+ $ pip install pyqt5
65
+ $ pip install numpy pyserial pyqtgraph pandas
66
+ ```
67
+
68
+ - リポジトリのクローン
69
+
70
+ ```
71
+ $ mkdir PlantAnalysisApps
72
+ $ cd PlantAnalysisApps
73
+ $ git clone https://github.com/kiyu-git/Arduino-Sensor-Data-Viewer
74
+ ```
75
+
43
76
## Usage
44
77
45
78
### Python
You can’t perform that action at this time.
0 commit comments