Installation¶
If you are using Python 3.4.x install iottly-sdk >= 1.1.0
If you are using Python 2.7.x install iottly-sdk >= 1.2.0
Installing using pip (recommended)¶
On Python 3
sudo pip3 install https://github.com/tomorrowdata/iottly-sdk-python/archive/1.3.0.tar.gz
On Python 2.7
sudo pip install https://github.com/tomorrowdata/iottly-sdk-python/archive/1.3.0.tar.gz
Installing using setuptools¶
wget -O iottly-sdk-python-1.2.0.tar.gz https://github.com/tomorrowdata/iottly-sdk-python/archive/1.3.0.tar.gz
tar -xzf iottly-sdk-python-1.2.0.tar.gz -C /tmp
cd /tmp/iottly-sdk-python-1.2.0
On Python 3
sudo python3 setup.py install
On Python 2.7
sudo python2.7 setup.py install