Skip to content
Somkiat Puisungnoen edited this page Mar 7, 2019 · 9 revisions

Software requirements

Installation

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

$python -V
Python <python version>

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

$easy_install pip
$pip -V
pip <python version>

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
Clone this wiki locally