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

How to install psocket via python pip




psocket - The cross-platform tool to work with remote connection using sockets, it belongs to Classifiers:

- Intended Audience :: System Administrators
- Topic :: System

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



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_psocket_env

- Active the virtual environment

test_psocket_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_psocket_env

- Active the virtual environment

source test_psocket_env/bin/active


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

To install psocket on Windows(CMD):

py -m pip install psocket

To install psocket on Unix/macOs:

pip install psocket


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

Example:

pip install psocket==1.0.0a0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
psocket 1.1.12022-08-03T21:40:03Windows:

py -m pip install psocket==1.1.1

Unix/macOs:

pip install psocket==1.1.1

psocket 1.1.02022-07-23T18:27:48Windows:

py -m pip install psocket==1.1.0

Unix/macOs:

pip install psocket==1.1.0

psocket 1.0.92022-06-04T12:49:40Windows:

py -m pip install psocket==1.0.9

Unix/macOs:

pip install psocket==1.0.9

psocket 1.0.82022-04-22T17:18:52Windows:

py -m pip install psocket==1.0.8

Unix/macOs:

pip install psocket==1.0.8

psocket 1.0.72022-04-18T15:34:55Windows:

py -m pip install psocket==1.0.7

Unix/macOs:

pip install psocket==1.0.7

psocket 1.0.62022-04-17T18:43:33Windows:

py -m pip install psocket==1.0.6

Unix/macOs:

pip install psocket==1.0.6

psocket 1.0.52022-04-06T09:14:03Windows:

py -m pip install psocket==1.0.5

Unix/macOs:

pip install psocket==1.0.5

psocket 1.0.42021-06-14T10:20:15Windows:

py -m pip install psocket==1.0.4

Unix/macOs:

pip install psocket==1.0.4

psocket 1.0.32021-03-12T16:51:28Windows:

py -m pip install psocket==1.0.3

Unix/macOs:

pip install psocket==1.0.3

psocket 1.0.2.post02021-02-26T18:24:13Windows:

py -m pip install psocket==1.0.2.post0

Unix/macOs:

pip install psocket==1.0.2.post0

psocket 1.0.22021-02-26T18:05:49Windows:

py -m pip install psocket==1.0.2

Unix/macOs:

pip install psocket==1.0.2

psocket 1.0.12021-02-26T16:17:02Windows:

py -m pip install psocket==1.0.1

Unix/macOs:

pip install psocket==1.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_psocket_downloaded_file>

On Unix/macOs:

pip install <path_to_psocket_downloaded_file>


List distribution:


Project link:

- Homepage