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

How to install poezio via python pip




poezio - A console XMPP client, it belongs to Classifiers:

- Environment :: Console :: Curses
- Intended Audience :: End Users/Desktop
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Operating System :: Unix
- Programming Language :: Python :: 3 :: Only
- Topic :: Communications
- Topic :: Communications :: Chat
- Topic :: Internet
- Topic :: Internet :: XMPP

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



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_poezio_env

- Active the virtual environment

test_poezio_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_poezio_env

- Active the virtual environment

source test_poezio_env/bin/active


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

To install poezio on Windows(CMD):

py -m pip install poezio

To install poezio on Unix/macOs:

pip install poezio


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

Example:

pip install poezio==0.8


Please see the version list below table:

VersionReleased dateCommand
poezio 0.142022-04-10T16:20:32Windows:

py -m pip install poezio==0.14

Unix/macOs:

pip install poezio==0.14

poezio 0.13.22022-03-01T18:49:49Windows:

py -m pip install poezio==0.13.2

Unix/macOs:

pip install poezio==0.13.2

poezio 0.13.12020-05-31T15:58:49Windows:

py -m pip install poezio==0.13.1

Unix/macOs:

pip install poezio==0.13.1

poezio 0.132020-05-24T15:13:37Windows:

py -m pip install poezio==0.13

Unix/macOs:

pip install poezio==0.13

poezio 0.12.12019-05-13T22:22:53Windows:

py -m pip install poezio==0.12.1

Unix/macOs:

pip install poezio==0.12.1

poezio 0.122018-08-13T21:04:45Windows:

py -m pip install poezio==0.12

Unix/macOs:

pip install poezio==0.12

poezio 0.112017-01-30T23:24:39Windows:

py -m pip install poezio==0.11

Unix/macOs:

pip install poezio==0.11

poezio 0.102016-10-09T16:25:26Windows:

py -m pip install poezio==0.10

Unix/macOs:

pip install poezio==0.10

poezio 0.92015-07-31T20:09:21Windows:

py -m pip install poezio==0.9

Unix/macOs:

pip install poezio==0.9

poezio 0.8.12015-01-21T00:08:43Windows:

py -m pip install poezio==0.8.1

Unix/macOs:

pip install poezio==0.8.1

poezio 0.82014-03-20T09:03:46Windows:

py -m pip install poezio==0.8

Unix/macOs:

pip install poezio==0.8


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_poezio_downloaded_file>

On Unix/macOs:

pip install <path_to_poezio_downloaded_file>


List distribution:


Project link:

- Homepage
- Download