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

How to install pplay via python pip




pplay - tool to replay and work with pcap and smcap (smithproxy capture) files, it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)

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



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_pplay_env

- Active the virtual environment

test_pplay_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_pplay_env

- Active the virtual environment

source test_pplay_env/bin/active


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

To install pplay on Windows(CMD):

py -m pip install pplay

To install pplay on Unix/macOs:

pip install pplay


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

Example:

pip install pplay==1.7.3


Please see the version list below table:

VersionReleased dateCommand
pplay 2.0.9.post12021-02-16T17:55:24Windows:

py -m pip install pplay==2.0.9.post1

Unix/macOs:

pip install pplay==2.0.9.post1

pplay 2.0.8.post42021-01-19T02:22:50Windows:

py -m pip install pplay==2.0.8.post4

Unix/macOs:

pip install pplay==2.0.8.post4

pplay 2.0.8.post32021-01-19T02:16:57Windows:

py -m pip install pplay==2.0.8.post3

Unix/macOs:

pip install pplay==2.0.8.post3

pplay 2.0.8.post22021-01-18T19:26:04Windows:

py -m pip install pplay==2.0.8.post2

Unix/macOs:

pip install pplay==2.0.8.post2

pplay 2.0.8.post12021-01-18T18:52:34Windows:

py -m pip install pplay==2.0.8.post1

Unix/macOs:

pip install pplay==2.0.8.post1

pplay 2.0.7.post12021-01-17T11:26:30Windows:

py -m pip install pplay==2.0.7.post1

Unix/macOs:

pip install pplay==2.0.7.post1

pplay 2.0.6.post12020-12-17T16:48:57Windows:

py -m pip install pplay==2.0.6.post1

Unix/macOs:

pip install pplay==2.0.6.post1

pplay 2.0.5.post42020-12-17T16:38:51Windows:

py -m pip install pplay==2.0.5.post4

Unix/macOs:

pip install pplay==2.0.5.post4

pplay 2.0.5.post32020-12-03T10:37:53Windows:

py -m pip install pplay==2.0.5.post3

Unix/macOs:

pip install pplay==2.0.5.post3

pplay 2.0.5.post22020-07-01T13:47:34Windows:

py -m pip install pplay==2.0.5.post2

Unix/macOs:

pip install pplay==2.0.5.post2

pplay 2.0.5.post12020-07-01T07:33:04Windows:

py -m pip install pplay==2.0.5.post1

Unix/macOs:

pip install pplay==2.0.5.post1

pplay 2.0.52020-06-30T21:42:22Windows:

py -m pip install pplay==2.0.5

Unix/macOs:

pip install pplay==2.0.5

pplay 2.0.42020-06-26T13:17:34Windows:

py -m pip install pplay==2.0.4

Unix/macOs:

pip install pplay==2.0.4

pplay 2.0.22020-06-25T10:50:10Windows:

py -m pip install pplay==2.0.2

Unix/macOs:

pip install pplay==2.0.2

pplay 2.0.12020-06-24T14:00:30Windows:

py -m pip install pplay==2.0.1

Unix/macOs:

pip install pplay==2.0.1

pplay 2.0.0.post62020-06-16T05:19:08Windows:

py -m pip install pplay==2.0.0.post6

Unix/macOs:

pip install pplay==2.0.0.post6

pplay 2.0.0.post52020-06-15T16:34:27Windows:

py -m pip install pplay==2.0.0.post5

Unix/macOs:

pip install pplay==2.0.0.post5

pplay 2.0.0.post12020-06-12T15:26:12Windows:

py -m pip install pplay==2.0.0.post1

Unix/macOs:

pip install pplay==2.0.0.post1

pplay 1.7.4.post12019-11-29T10:30:59Windows:

py -m pip install pplay==1.7.4.post1

Unix/macOs:

pip install pplay==1.7.4.post1

pplay 1.7.3.post52019-11-18T09:37:19Windows:

py -m pip install pplay==1.7.3.post5

Unix/macOs:

pip install pplay==1.7.3.post5

pplay 1.7.3.post42019-11-18T09:33:48Windows:

py -m pip install pplay==1.7.3.post4

Unix/macOs:

pip install pplay==1.7.3.post4

pplay 1.7.3.post32019-11-18T09:25:59Windows:

py -m pip install pplay==1.7.3.post3

Unix/macOs:

pip install pplay==1.7.3.post3

pplay 1.7.3.post22019-11-18T09:20:08Windows:

py -m pip install pplay==1.7.3.post2

Unix/macOs:

pip install pplay==1.7.3.post2

pplay 1.7.3.post12019-11-18T09:05:41Windows:

py -m pip install pplay==1.7.3.post1

Unix/macOs:

pip install pplay==1.7.3.post1

pplay 1.7.32019-11-18T08:45:39Windows:

py -m pip install pplay==1.7.3

Unix/macOs:

pip install pplay==1.7.3


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

Download the distribution file from pplay-2.0.9.post1.tar.gz or the specific pplay version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pplay_downloaded_file>

On Unix/macOs:

pip install <path_to_pplay_downloaded_file>


List distribution:


Project link:

- Homepage