Skip to content
Somkiat Puisungnoen edited this page Aug 13, 2021 · 8 revisions

Software requirements

Installation

Step 1 :: Install Python Check in command line (cmd/terminal)

$python -V
Python 3.x.x

Step 2 :: Install pip or Package Installer for Python Check in command line (cmd/terminal)

$easy_install pip
$pip -V
pip 2x.x.x

When you got problem

command not found or pip/python not recognized

Solution :: set in environment variable

For Windows

$set PYTHON_HOME=<absolute path of your python installed path/directory>
$set PATH=.;%PYTHON_HOME%;%PYTHON_HOME%\scripts;%PATH%

For Mac and Linux

$export PYTHON_HOME=<absolute path of your python installed path/directory>
$export PATH=.:$PYTHON_HOME:$PYTHON_HOME\scripts:$PATH

step 3 :: Install Robotframework

$pip install robotframework
$robot

[ ERROR ] Expected at least 1 argument, got 0.

Try --help for usage information.

step 4 :: Install Robotframework libraries

$pip install robotframework-seleniumlibrary

Let's Go !!

Clone this wiki locally