<?xml version="1.0" encoding="UTF-8"?><oembed><type>video</type><version>1.0</version><html>&lt;iframe src=&quot;https://www.loom.com/embed/2e68acfb47d74ae3af61042b468b084a&quot; frameborder=&quot;0&quot; width=&quot;1280&quot; height=&quot;960&quot; webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt;</html><height>960</height><width>1280</width><provider_name>Loom</provider_name><provider_url>https://www.loom.com</provider_url><thumbnail_height>960</thumbnail_height><thumbnail_width>1280</thumbnail_width><thumbnail_url>https://cdn.loom.com/sessions/thumbnails/2e68acfb47d74ae3af61042b468b084a-00001.gif</thumbnail_url><duration>261</duration><title>Raspberry Pi 4: Installing: Pip, Robot Framework, SSH, MQTT, and Selenium library installation (1)</title><description>Install pip https://pip.pypa.io/en/stable/

Install Robot framework: https://pypi.org/project/robotframework/
pip install robotframework

for pi, do a

sudo nano ~/.profile

and add the following:

#set path for  robot
if [ -d &quot;$HOME/.local/lib/python3.7/site-packages&quot;] ; then
    PATH=&quot;$HOME/.local/lib/python3.7/site-packages:$PATH&quot;
fi

pip install chromedriver

Install Selenium for Python: https://pypi.org/project/selenium/
pip install selenium

Install Robot selenium library: (fast forward to 36:35 video timeline) : https://github.com/robotframework/SeleniumLibrary
pip install --upgrade robotframework-seleniumlibrary

Install Robot ssh library https://github.com/robotframework/SSHLibrary
http://robotframework.org/SSHLibrary/SSHLibrary.html
pip install robotframework-sshlibrary
pip install --upgrade robotframework-sshlibrary

Install chrome driver https://chromedriver.chromium.org/downloads
For Raspberry Pi:
https://ivanderevianko.com/2020/01/selenium-chromedriver-for-raspberrypi
sudo apt-get install chromium-chromedriver
cp chromedriver /home/pi/.local/lib/python3.7/site-packages</description></oembed>