Inhaltsverzeichnis

Python

Python installieren

sudo apt install python3 python-is-python3 -y

PIP installieren (Weg 1)

sudo apt install python3-pip
python -m pip --version

PIP installieren (Weg 2)

cd ~/Downloads/
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
python -m pip --version

PlatformIO installieren

cd ~/Downloads/
wget -O get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py
python3 get-platformio.py
echo PATH="\$HOME/.platformio/penv/bin:\$PATH" >> ~/.bashrc
cat ~/.bashrc
sh ~/.bashrc
pio --version