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

How to install gampc via python pip




gampc - Graphical Asynchronous Music Player Client, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- Intended Audience :: End Users/Desktop
- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.9
- Topic :: Multimedia
- Topic :: Multimedia :: Sound/Audio
- Topic :: Multimedia :: Sound/Audio :: Players

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



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_gampc_env

- Active the virtual environment

test_gampc_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_gampc_env

- Active the virtual environment

source test_gampc_env/bin/active


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

To install gampc on Windows(CMD):

py -m pip install gampc

To install gampc on Unix/macOs:

pip install gampc


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

Example:

pip install gampc==0.2.0


Please see the version list below table:

VersionReleased dateCommand
gampc 0.3.02021-03-21T18:03:31Windows:

py -m pip install gampc==0.3.0

Unix/macOs:

pip install gampc==0.3.0

gampc 0.2.112020-09-26T11:32:26Windows:

py -m pip install gampc==0.2.11

Unix/macOs:

pip install gampc==0.2.11

gampc 0.2.102018-08-17T16:34:51Windows:

py -m pip install gampc==0.2.10

Unix/macOs:

pip install gampc==0.2.10

gampc 0.2.92017-10-24T09:37:22Windows:

py -m pip install gampc==0.2.9

Unix/macOs:

pip install gampc==0.2.9

gampc 0.2.82017-10-22T13:09:59Windows:

py -m pip install gampc==0.2.8

Unix/macOs:

pip install gampc==0.2.8

gampc 0.2.72017-06-25T13:04:30Windows:

py -m pip install gampc==0.2.7

Unix/macOs:

pip install gampc==0.2.7

gampc 0.2.62017-05-08T12:33:38Windows:

py -m pip install gampc==0.2.6

Unix/macOs:

pip install gampc==0.2.6

gampc 0.2.52017-04-30T13:43:31Windows:

py -m pip install gampc==0.2.5

Unix/macOs:

pip install gampc==0.2.5

gampc 0.2.42017-04-18T07:09:54Windows:

py -m pip install gampc==0.2.4

Unix/macOs:

pip install gampc==0.2.4

gampc 0.2.32017-03-25T06:38:04Windows:

py -m pip install gampc==0.2.3

Unix/macOs:

pip install gampc==0.2.3

gampc 0.2.22017-03-24T16:45:05Windows:

py -m pip install gampc==0.2.2

Unix/macOs:

pip install gampc==0.2.2

gampc 0.2.12017-03-21T13:30:43Windows:

py -m pip install gampc==0.2.1

Unix/macOs:

pip install gampc==0.2.1

gampc 0.2.02017-03-19T13:26:28Windows:

py -m pip install gampc==0.2.0

Unix/macOs:

pip install gampc==0.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gampc_downloaded_file>

On Unix/macOs:

pip install <path_to_gampc_downloaded_file>


List distribution:

- gampc-0.2.0.tar.gz
- gampc-0.2.1.tar.gz
- gampc-0.2.2.tar.gz
- gampc-0.2.3.tar.gz
- gampc-0.2.4.tar.gz
- gampc-0.2.5.tar.gz
- gampc-0.2.6.tar.gz
- gampc-0.2.7.tar.gz
- gampc-0.2.8.tar.gz
- gampc-0.2.9.tar.gz
- gampc-0.2.10.tar.gz
- gampc-0.2.11.tar.gz
- gampc-0.3.0.tar.gz


Project link:

- Homepage