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

How to install QHangups via python pip




QHangups - Alternative client for Google Hangouts written in PyQt, it belongs to Classifiers:

- Environment :: MacOS X
- Environment :: Win32 (MS Windows)
- Environment :: X11 Applications
- Environment :: X11 Applications :: Qt
- Intended Audience :: End Users/Desktop
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Topic :: Communications
- Topic :: Communications :: Chat

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



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_QHangups_env

- Active the virtual environment

test_QHangups_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_QHangups_env

- Active the virtual environment

source test_QHangups_env/bin/active


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

To install QHangups on Windows(CMD):

py -m pip install QHangups

To install QHangups on Unix/macOs:

pip install QHangups


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

Example:

pip install QHangups==1.5


Please see the version list below table:

VersionReleased dateCommand
QHangups 1.8.12016-10-17T19:34:47Windows:

py -m pip install QHangups==1.8.1

Unix/macOs:

pip install QHangups==1.8.1

QHangups 1.7.12015-11-15T02:10:29Windows:

py -m pip install QHangups==1.7.1

Unix/macOs:

pip install QHangups==1.7.1

QHangups 1.7.02015-11-02T15:54:17Windows:

py -m pip install QHangups==1.7.0

Unix/macOs:

pip install QHangups==1.7.0

QHangups 1.6.02015-05-20T11:17:53Windows:

py -m pip install QHangups==1.6.0

Unix/macOs:

pip install QHangups==1.6.0

QHangups 1.5.32015-04-26T18:50:18Windows:

py -m pip install QHangups==1.5.3

Unix/macOs:

pip install QHangups==1.5.3

QHangups 1.5.22015-04-26T14:55:06Windows:

py -m pip install QHangups==1.5.2

Unix/macOs:

pip install QHangups==1.5.2

QHangups 1.5.12015-04-24T00:29:07Windows:

py -m pip install QHangups==1.5.1

Unix/macOs:

pip install QHangups==1.5.1

QHangups 1.52015-04-24T00:18:09Windows:

py -m pip install QHangups==1.5

Unix/macOs:

pip install QHangups==1.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_QHangups_downloaded_file>

On Unix/macOs:

pip install <path_to_QHangups_downloaded_file>


List distribution:


Project link:

- Homepage