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

How to install whatsapp-cli via python pip




whatsapp-cli - CLI for whatsapp, it belongs to Classifiers:

- Environment :: Console
- Environment :: Console :: Curses
- License :: OSI Approved :: MIT License

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



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_whatsapp-cli_env

- Active the virtual environment

test_whatsapp-cli_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_whatsapp-cli_env

- Active the virtual environment

source test_whatsapp-cli_env/bin/active


Step 2: OK, now, let flow below content to start the installation whatsapp-cli

To install whatsapp-cli on Windows(CMD):

py -m pip install whatsapp-cli

To install whatsapp-cli on Unix/macOs:

pip install whatsapp-cli


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

Example:

pip install whatsapp-cli==0.0.1


Please see the version list below table:

VersionReleased dateCommand
whatsapp-cli 0.1.32019-11-29T21:53:18Windows:

py -m pip install whatsapp-cli==0.1.3

Unix/macOs:

pip install whatsapp-cli==0.1.3

whatsapp-cli 0.1.22019-03-04T21:55:27Windows:

py -m pip install whatsapp-cli==0.1.2

Unix/macOs:

pip install whatsapp-cli==0.1.2

whatsapp-cli 0.1.12018-03-25T22:28:17Windows:

py -m pip install whatsapp-cli==0.1.1

Unix/macOs:

pip install whatsapp-cli==0.1.1

whatsapp-cli 0.1.02018-03-25T00:18:45Windows:

py -m pip install whatsapp-cli==0.1.0

Unix/macOs:

pip install whatsapp-cli==0.1.0

whatsapp-cli 0.0.22018-03-24T23:39:30Windows:

py -m pip install whatsapp-cli==0.0.2

Unix/macOs:

pip install whatsapp-cli==0.0.2

whatsapp-cli 0.0.12018-03-24T23:28:16Windows:

py -m pip install whatsapp-cli==0.0.1

Unix/macOs:

pip install whatsapp-cli==0.0.1


Step 4: Otherwise, you can install whatsapp-cli from local archives:

Download the distribution file from whatsapp_cli-0.1.3-py2-none-any.whl or the specific whatsapp-cli version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_whatsapp-cli_downloaded_file>

On Unix/macOs:

pip install <path_to_whatsapp-cli_downloaded_file>


List distribution:


Project link:

- Homepage