Robot Framework is a popular open source tool for doing RPA (Robotic Process Automation) to automate repetive tasks. This article is an installation guide.
Kalle Tolonen
6.7.2022
Requirements
Debian 11
Python (Comes pre-installed on Debian)
Creating a virtual environment
First you should install pip packages in a virtual env to contain them. You can install Virtualenv with:
The latter command creates a virtual environment for Python and makes it possible for Python to use system-site-packages. That way you can use pkg’s that aren’t installed in the environment on top of those that you’ll install.
After that we can create requirements.txt for our project and install the pkg’s.