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

How to install i2c-lcd-esp32 via python pip




i2c-lcd-esp32 - i2c 16*2 lcd library for esp32 divkit v1, it belongs to Classifiers:

- Development Status :: 1 - Planning
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Unix
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: MicroPython

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



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_i2c-lcd-esp32_env

- Active the virtual environment

test_i2c-lcd-esp32_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_i2c-lcd-esp32_env

- Active the virtual environment

source test_i2c-lcd-esp32_env/bin/active


Step 2: OK, now, let flow below content to start the installation i2c-lcd-esp32

To install i2c-lcd-esp32 on Windows(CMD):

py -m pip install i2c-lcd-esp32

To install i2c-lcd-esp32 on Unix/macOs:

pip install i2c-lcd-esp32


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

Example:

pip install i2c-lcd-esp32==0.0.12


Please see the version list below table:

VersionReleased dateCommand
i2c-lcd-esp32 0.0.192022-01-03T13:14:51Windows:

py -m pip install i2c-lcd-esp32==0.0.19

Unix/macOs:

pip install i2c-lcd-esp32==0.0.19

i2c-lcd-esp32 0.0.182022-01-03T13:09:44Windows:

py -m pip install i2c-lcd-esp32==0.0.18

Unix/macOs:

pip install i2c-lcd-esp32==0.0.18

i2c-lcd-esp32 0.0.172022-01-03T13:04:56Windows:

py -m pip install i2c-lcd-esp32==0.0.17

Unix/macOs:

pip install i2c-lcd-esp32==0.0.17

i2c-lcd-esp32 0.0.162022-01-03T12:53:37Windows:

py -m pip install i2c-lcd-esp32==0.0.16

Unix/macOs:

pip install i2c-lcd-esp32==0.0.16

i2c-lcd-esp32 0.0.152022-01-03T12:46:28Windows:

py -m pip install i2c-lcd-esp32==0.0.15

Unix/macOs:

pip install i2c-lcd-esp32==0.0.15

i2c-lcd-esp32 0.0.142022-01-03T12:40:16Windows:

py -m pip install i2c-lcd-esp32==0.0.14

Unix/macOs:

pip install i2c-lcd-esp32==0.0.14

i2c-lcd-esp32 0.0.132022-01-03T12:21:42Windows:

py -m pip install i2c-lcd-esp32==0.0.13

Unix/macOs:

pip install i2c-lcd-esp32==0.0.13

i2c-lcd-esp32 0.0.122022-01-03T11:55:25Windows:

py -m pip install i2c-lcd-esp32==0.0.12

Unix/macOs:

pip install i2c-lcd-esp32==0.0.12


Step 4: Otherwise, you can install i2c-lcd-esp32 from local archives:

Download the distribution file from i2c_lcd_esp32-0.0.19.tar.gz or the specific i2c-lcd-esp32 version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_i2c-lcd-esp32_downloaded_file>

On Unix/macOs:

pip install <path_to_i2c-lcd-esp32_downloaded_file>


List distribution:

- i2c_lcd_esp32-0.0.12-py3-none-any.whl
- i2c_lcd_esp32-0.0.12.tar.gz
- i2c_lcd_esp32-0.0.13-py3-none-any.whl
- i2c_lcd_esp32-0.0.13.tar.gz
- i2c_lcd_esp32-0.0.14-py3-none-any.whl
- i2c_lcd_esp32-0.0.14.tar.gz
- i2c_lcd_esp32-0.0.15-py3-none-any.whl
- i2c_lcd_esp32-0.0.15.tar.gz
- i2c_lcd_esp32-0.0.16-py3-none-any.whl
- i2c_lcd_esp32-0.0.16.tar.gz
- i2c_lcd_esp32-0.0.17-py3-none-any.whl
- i2c_lcd_esp32-0.0.17.tar.gz
- i2c_lcd_esp32-0.0.18-py3-none-any.whl
- i2c_lcd_esp32-0.0.18.tar.gz
- i2c_lcd_esp32-0.0.19-py3-none-any.whl
- i2c_lcd_esp32-0.0.19.tar.gz


Project link: