You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This guide provides essential commands for setting up Ethopy on a Raspberry Pi device.
5
+
This guide provides essential commands for setting up Ethopy on a Raspberry Pi (RP) device.
5
6
6
-
## SSH Setup
7
-
Enable SSH service for remote access:
8
-
```bash
9
-
sudo systemctl enable ssh # Enables SSH to start automatically at boot
10
-
sudo systemctl start ssh # Starts SSH service immediately
11
-
```
7
+
## Prerequisites
8
+
9
+
- Raspberry Pi image
10
+
Follow the instructions in the [Raspberry Pi documentation](https://www.raspberrypi.com/documentation/) to install the image and set up your Raspberry Pi.
11
+
12
+
- SSH Setup
13
+
Enable the SSH service to allow remote access to your Raspberry Pi via the terminal:
12
14
13
-
## Ethopy Installation
15
+
```bash
16
+
sudo systemctl enable ssh # Enables SSH to start automatically at boot
17
+
sudo systemctl start ssh # Starts SSH service immediately
18
+
```
14
19
15
-
1. Install Ethopy:
20
+
## EthoPy setup
21
+
22
+
### Step 1: Ethopy Installation
23
+
24
+
Once your Raspberry Pi is set up, you can connect to it from your computer's terminal based on [Raspberry Pi documentation](https://www.raspberrypi.com/documentation/).
25
+
26
+
1. Verify python version:
16
27
```bash
17
-
pip install ethopy
28
+
python --version
18
29
```
19
30
20
-
2. Create configuration file at `~/.ethopy/local_conf.json`:
0 commit comments