Skip to content

Commit 4e28979

Browse files
committed
Add: How to setup raspberry pi
1 parent 4befbb4 commit 4e28979

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,39 @@ csv ファイルをリアルタイムに読み込み、解析・表示する PyQ
4040
% git clone https://github.com/kiyu-git/Arduino-Sensor-Data-Viewer
4141
```
4242

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+
4376
## Usage
4477

4578
### Python

0 commit comments

Comments
 (0)