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

How to install xinput-gui via python pip




xinput-gui - A simple GUI for Xorg's Xinput tool., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- Intended Audience :: End Users/Desktop
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Natural Language :: English
- Operating System :: POSIX
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.5
- Topic :: Desktop Environment
- Topic :: Utilities

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



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_xinput-gui_env

- Active the virtual environment

test_xinput-gui_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_xinput-gui_env

- Active the virtual environment

source test_xinput-gui_env/bin/active


Step 2: OK, now, let flow below content to start the installation xinput-gui

To install xinput-gui on Windows(CMD):

py -m pip install xinput-gui

To install xinput-gui on Unix/macOs:

pip install xinput-gui


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

Example:

pip install xinput-gui==0.1.1


Please see the version list below table:

VersionReleased dateCommand
xinput-gui 0.3.12019-07-20T05:03:14Windows:

py -m pip install xinput-gui==0.3.1

Unix/macOs:

pip install xinput-gui==0.3.1

xinput-gui 0.3.02019-07-20T04:25:13Windows:

py -m pip install xinput-gui==0.3.0

Unix/macOs:

pip install xinput-gui==0.3.0

xinput-gui 0.2.32019-07-15T19:23:21Windows:

py -m pip install xinput-gui==0.2.3

Unix/macOs:

pip install xinput-gui==0.2.3

xinput-gui 0.2.22019-07-15T01:37:37Windows:

py -m pip install xinput-gui==0.2.2

Unix/macOs:

pip install xinput-gui==0.2.2

xinput-gui 0.2.12019-07-13T20:19:33Windows:

py -m pip install xinput-gui==0.2.1

Unix/macOs:

pip install xinput-gui==0.2.1

xinput-gui 0.2.02019-07-13T18:48:22Windows:

py -m pip install xinput-gui==0.2.0

Unix/macOs:

pip install xinput-gui==0.2.0

xinput-gui 0.1.12019-07-09T14:52:39Windows:

py -m pip install xinput-gui==0.1.1

Unix/macOs:

pip install xinput-gui==0.1.1


Step 4: Otherwise, you can install xinput-gui from local archives:

Download the distribution file from xinput-gui-0.3.1.tar.gz or the specific xinput-gui version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_xinput-gui_downloaded_file>

On Unix/macOs:

pip install <path_to_xinput-gui_downloaded_file>


List distribution:


Project link:

- Homepage