10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf7b10 commit cc00af3Copy full SHA for cc00af3
docs/arduino-ide/opensuse.md
@@ -6,7 +6,11 @@ Installation instructions for openSUSE
6
7
```bash
8
sudo usermod -a -G dialout $USER && \
9
- sudo zypper install git python3-pip python3-pyserial && \
+ if [ `python --version 2>&1 | grep '2.7' | wc -l` = "1" ]; then \
10
+ sudo zypper install git python-pip python-pyserial; \
11
+ else \
12
+ sudo zypper install git python3-pip python3-pyserial; \
13
+ fi && \
14
mkdir -p ~/Arduino/hardware/espressif && \
15
cd ~/Arduino/hardware/espressif && \
16
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
0 commit comments