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

How to install tapo-plug via python pip




tapo-plug - A REST API warper for TP-Link Tapo P100/P105., it belongs to Classifiers:

- License :: OSI Approved
- License :: OSI Approved :: MIT License
- Programming Language :: Python
- Programming Language :: Python :: 3

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



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_tapo-plug_env

- Active the virtual environment

test_tapo-plug_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_tapo-plug_env

- Active the virtual environment

source test_tapo-plug_env/bin/active


Step 2: OK, now, let flow below content to start the installation tapo-plug

To install tapo-plug on Windows(CMD):

py -m pip install tapo-plug

To install tapo-plug on Unix/macOs:

pip install tapo-plug


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

Example:

pip install tapo-plug==0.1


Please see the version list below table:

VersionReleased dateCommand
tapo-plug 0.72021-09-07T00:44:55Windows:

py -m pip install tapo-plug==0.7

Unix/macOs:

pip install tapo-plug==0.7

tapo-plug 0.62021-09-01T09:43:20Windows:

py -m pip install tapo-plug==0.6

Unix/macOs:

pip install tapo-plug==0.6

tapo-plug 0.52021-09-01T05:35:41Windows:

py -m pip install tapo-plug==0.5

Unix/macOs:

pip install tapo-plug==0.5

tapo-plug 0.42021-09-01T05:35:39Windows:

py -m pip install tapo-plug==0.4

Unix/macOs:

pip install tapo-plug==0.4

tapo-plug 0.32021-09-01T05:35:38Windows:

py -m pip install tapo-plug==0.3

Unix/macOs:

pip install tapo-plug==0.3

tapo-plug 0.22021-09-01T04:58:49Windows:

py -m pip install tapo-plug==0.2

Unix/macOs:

pip install tapo-plug==0.2

tapo-plug 0.12021-09-01T04:48:31Windows:

py -m pip install tapo-plug==0.1

Unix/macOs:

pip install tapo-plug==0.1


Step 4: Otherwise, you can install tapo-plug from local archives:

Download the distribution file from tapo_plug-0.7.tar.gz or the specific tapo-plug version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tapo-plug_downloaded_file>

On Unix/macOs:

pip install <path_to_tapo-plug_downloaded_file>


List distribution:


Project link:

- Homepage