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

How to install pgext via python pip




pgext - Pygame Extension - set of image filters, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: C
- Topic :: Games/Entertainment
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: pygame

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



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_pgext_env

- Active the virtual environment

test_pgext_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_pgext_env

- Active the virtual environment

source test_pgext_env/bin/active


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

To install pgext on Windows(CMD):

py -m pip install pgext

To install pgext on Unix/macOs:

pip install pgext


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

Example:

pip install pgext==1.8


Please see the version list below table:

VersionReleased dateCommand
pgext 1.182013-10-25T07:00:31Windows:

py -m pip install pgext==1.18

Unix/macOs:

pip install pgext==1.18

pgext 1.172013-07-16T21:37:53Windows:

py -m pip install pgext==1.17

Unix/macOs:

pip install pgext==1.17

pgext 1.162013-04-04T14:49:46Windows:

py -m pip install pgext==1.16

Unix/macOs:

pip install pgext==1.16

pgext 1.152013-02-15T18:49:56Windows:

py -m pip install pgext==1.15

Unix/macOs:

pip install pgext==1.15

pgext 1.142013-01-26T17:26:29Windows:

py -m pip install pgext==1.14

Unix/macOs:

pip install pgext==1.14

pgext 1.132013-01-16T15:37:51Windows:

py -m pip install pgext==1.13

Unix/macOs:

pip install pgext==1.13

pgext 1.122012-12-07T19:20:00Windows:

py -m pip install pgext==1.12

Unix/macOs:

pip install pgext==1.12

pgext 1.112012-11-23T12:54:40Windows:

py -m pip install pgext==1.11

Unix/macOs:

pip install pgext==1.11

pgext 1.102012-11-10T10:48:01Windows:

py -m pip install pgext==1.10

Unix/macOs:

pip install pgext==1.10

pgext 1.92012-10-27T19:20:50Windows:

py -m pip install pgext==1.9

Unix/macOs:

pip install pgext==1.9

pgext 1.82012-10-17T15:53:14Windows:

py -m pip install pgext==1.8

Unix/macOs:

pip install pgext==1.8


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pgext_downloaded_file>

On Unix/macOs:

pip install <path_to_pgext_downloaded_file>


List distribution:


Project link:

- Homepage