Setup Python¶
Instructions to install Python:
Install latest stable version of python from: https://www.python.org/downloads/windows/. Make sure to add it to system path.
# update pip
python -m pip install --upgrade pip
# install python
sudo apt update
sudo apt install python3-dev python3-pip
Also install dependencies:
# install cffi
pip install cffi