-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Update README.md with install instructions for openSUSE #585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Tested on Leap 42.2 right now. Works. |
Just discovered, this works only, if python version 3 is the default python installation on the system. |
How about this: if [ `python --version 2>&1 | grep '2.7' | wc -l` = "1" ]; then \
sudo zypper install git python-pip python-pyserial; \
else \
sudo zypper install git python3-pip python3-pyserial; \
fi && \
sudo usermod -a -G dialout $USER && \
mkdir -p ~/Arduino/hardware/espressif && \
cd ~/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
cd esp32/tools/ && \
python get.py |
looks good to me
2017-08-18 14:14 GMT+02:00 Me No Dev <[email protected]>:
… How about this:
if [ `python --version 2>&1 | grep '2.7' | wc -l` = "1" ]; then \
sudo zypper install git python-pip python-pyserial; \else \
sudo zypper install git python3-pip python3-pyserial; \fi && \
sudo usermod -a -G dialout $USER && \
mkdir -p ~/Arduino/hardware/espressif && \cd ~/Arduino/hardware/espressif && \
git clone https://github.com/espressif/arduino-esp32.git esp32 && \cd esp32/tools/ && \
python get.py
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#585 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AD-ywXPQktlsvKuuhrmcBd1bwsEkJobIks5sZYBAgaJpZM4O7a4_>
.
|
OK :) please add it and I will merge |
@joba1 it's been a while :) will you add my workaround for python3 to the PR so I can merge it? |
* Update README.md * Create opensuse.md
No description provided.