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

How to install python-lirc via python pip




python-lirc - Python bindings for LIRC., it belongs to Classifiers:

- License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
- Programming Language :: C
- Programming Language :: Cython

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



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_python-lirc_env

- Active the virtual environment

test_python-lirc_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_python-lirc_env

- Active the virtual environment

source test_python-lirc_env/bin/active


Step 2: OK, now, let flow below content to start the installation python-lirc

To install python-lirc on Windows(CMD):

py -m pip install python-lirc

To install python-lirc on Unix/macOs:

pip install python-lirc


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

Example:

pip install python-lirc==1.0


Please see the version list below table:

VersionReleased dateCommand
python-lirc 1.2.32016-08-08T22:03:10Windows:

py -m pip install python-lirc==1.2.3

Unix/macOs:

pip install python-lirc==1.2.3

python-lirc 1.2.22016-08-08T21:59:24Windows:

py -m pip install python-lirc==1.2.2

Unix/macOs:

pip install python-lirc==1.2.2

python-lirc 1.2.12014-09-24T10:37:02Windows:

py -m pip install python-lirc==1.2.1

Unix/macOs:

pip install python-lirc==1.2.1

python-lirc 1.2.02013-08-23T11:19:55Windows:

py -m pip install python-lirc==1.2.0

Unix/macOs:

pip install python-lirc==1.2.0

python-lirc 1.12013-07-04T12:50:07Windows:

py -m pip install python-lirc==1.1

Unix/macOs:

pip install python-lirc==1.1

python-lirc 1.02013-06-14T11:36:05Windows:

py -m pip install python-lirc==1.0

Unix/macOs:

pip install python-lirc==1.0


Step 4: Otherwise, you can install python-lirc from local archives:

Download the distribution file from python-lirc-1.2.3.tar.gz or the specific python-lirc version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_python-lirc_downloaded_file>

On Unix/macOs:

pip install <path_to_python-lirc_downloaded_file>


List distribution:


Project link:

- Homepage