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

How to install yeelib via python pip




yeelib - Python library for Xiaomi Mi Yeelight., it belongs to Classifiers:

- Framework :: AsyncIO
- Intended Audience :: Information Technology
- Topic :: Home Automation
- Topic :: System
- Topic :: System :: Networking

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



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_yeelib_env

- Active the virtual environment

test_yeelib_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_yeelib_env

- Active the virtual environment

source test_yeelib_env/bin/active


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

To install yeelib on Windows(CMD):

py -m pip install yeelib

To install yeelib on Unix/macOs:

pip install yeelib


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

Example:

pip install yeelib==0.1.0


Please see the version list below table:

VersionReleased dateCommand
yeelib 2.1.102019-04-07T07:36:10Windows:

py -m pip install yeelib==2.1.10

Unix/macOs:

pip install yeelib==2.1.10

yeelib 2.1.92019-04-07T07:30:28Windows:

py -m pip install yeelib==2.1.9

Unix/macOs:

pip install yeelib==2.1.9

yeelib 2.1.82019-04-07T07:03:51Windows:

py -m pip install yeelib==2.1.8

Unix/macOs:

pip install yeelib==2.1.8

yeelib 2.1.72019-04-06T20:55:38Windows:

py -m pip install yeelib==2.1.7

Unix/macOs:

pip install yeelib==2.1.7

yeelib 2.1.52019-04-06T13:08:13Windows:

py -m pip install yeelib==2.1.5

Unix/macOs:

pip install yeelib==2.1.5

yeelib 2.1.22019-04-06T12:26:56Windows:

py -m pip install yeelib==2.1.2

Unix/macOs:

pip install yeelib==2.1.2

yeelib 2.1.12019-04-06T12:19:14Windows:

py -m pip install yeelib==2.1.1

Unix/macOs:

pip install yeelib==2.1.1

yeelib 2.1.02019-04-06T10:41:56Windows:

py -m pip install yeelib==2.1.0

Unix/macOs:

pip install yeelib==2.1.0

yeelib 2.0.22018-01-23T08:16:49Windows:

py -m pip install yeelib==2.0.2

Unix/macOs:

pip install yeelib==2.0.2

yeelib 2.0.12018-01-22T08:07:34Windows:

py -m pip install yeelib==2.0.1

Unix/macOs:

pip install yeelib==2.0.1

yeelib 2.0.02018-01-21T18:04:49Windows:

py -m pip install yeelib==2.0.0

Unix/macOs:

pip install yeelib==2.0.0

yeelib 1.0.12018-01-14T18:00:33Windows:

py -m pip install yeelib==1.0.1

Unix/macOs:

pip install yeelib==1.0.1

yeelib 1.0.02018-01-13T17:09:11Windows:

py -m pip install yeelib==1.0.0

Unix/macOs:

pip install yeelib==1.0.0

yeelib 0.2.12018-01-07T16:08:44Windows:

py -m pip install yeelib==0.2.1

Unix/macOs:

pip install yeelib==0.2.1

yeelib 0.2.02018-01-07T15:41:53Windows:

py -m pip install yeelib==0.2.0

Unix/macOs:

pip install yeelib==0.2.0

yeelib 0.1.12018-01-07T12:13:54Windows:

py -m pip install yeelib==0.1.1

Unix/macOs:

pip install yeelib==0.1.1

yeelib 0.1.02018-01-06T23:27:54Windows:

py -m pip install yeelib==0.1.0

Unix/macOs:

pip install yeelib==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_yeelib_downloaded_file>

On Unix/macOs:

pip install <path_to_yeelib_downloaded_file>


List distribution:


Project link:

- Homepage