Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install radiotherm via python pip




radiotherm - client library for wifi thermostats sold by radiothermostat.com, it belongs to Classifiers:

- Topic :: Home Automation

When you know about this project and you want to new install radiotherm to support your project or you get trouble as ModuleNotFoundError: No module named "radiotherm" or ImportError: cannot import name "radiotherm" in your project, let follow this tutorial to install radiotherm



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_radiotherm_env

- Active the virtual environment

test_radiotherm_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_radiotherm_env

- Active the virtual environment

source test_radiotherm_env/bin/active


Step 2: OK, now, let flow below content to start the installation radiotherm

To install radiotherm on Windows(CMD):

py -m pip install radiotherm

To install radiotherm on Unix/macOs:

pip install radiotherm


Step 3: If you want to install a specific radiotherm version, add ==<radiotherm version> to the end command line

Example:

pip install radiotherm==1.0


Please see the version list below table:

VersionReleased dateCommand
radiotherm 2.1.02021-01-19T01:59:31Windows:

py -m pip install radiotherm==2.1.0

Unix/macOs:

pip install radiotherm==2.1.0

radiotherm 2.0.02018-12-07T20:39:53Windows:

py -m pip install radiotherm==2.0.0

Unix/macOs:

pip install radiotherm==2.0.0

radiotherm 1.4.12018-08-09T02:18:55Windows:

py -m pip install radiotherm==1.4.1

Unix/macOs:

pip install radiotherm==1.4.1

radiotherm 1.32017-06-17T03:15:14Windows:

py -m pip install radiotherm==1.3

Unix/macOs:

pip install radiotherm==1.3

radiotherm 1.22013-11-25T03:07:46Windows:

py -m pip install radiotherm==1.2

Unix/macOs:

pip install radiotherm==1.2

radiotherm 1.12013-09-29T04:04:24Windows:

py -m pip install radiotherm==1.1

Unix/macOs:

pip install radiotherm==1.1

radiotherm 1.02012-11-04T19:01:56Windows:

py -m pip install radiotherm==1.0

Unix/macOs:

pip install radiotherm==1.0


Step 4: Otherwise, you can install radiotherm from local archives:

Download the distribution file from radiotherm-2.1.0.tar.gz or the specific radiotherm version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_radiotherm_downloaded_file>

On Unix/macOs:

pip install <path_to_radiotherm_downloaded_file>


List distribution:


Project link:

- Homepage