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

How to install gasp via python pip




gasp - GASP (Graphics API for Students of Python), it belongs to Classifiers:

- Intended Audience :: Education
- License :: OSI Approved :: GNU General Public License (GPL)
- Natural Language :: English
- Topic :: Education
- Topic :: Education :: Computer Aided Instruction (CAI)

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



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_gasp_env

- Active the virtual environment

test_gasp_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_gasp_env

- Active the virtual environment

source test_gasp_env/bin/active


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

To install gasp on Windows(CMD):

py -m pip install gasp

To install gasp on Unix/macOs:

pip install gasp


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

Example:

pip install gasp==0.1.0


Please see the version list below table:

VersionReleased dateCommand
gasp 0.6.12021-07-29T00:37:49Windows:

py -m pip install gasp==0.6.1

Unix/macOs:

pip install gasp==0.6.1

gasp 0.6.02021-07-12T02:13:24Windows:

py -m pip install gasp==0.6.0

Unix/macOs:

pip install gasp==0.6.0

gasp 0.4.52007-10-25T14:53:28Windows:

py -m pip install gasp==0.4.5

Unix/macOs:

pip install gasp==0.4.5

gasp 0.4.02007-07-11T16:23:49Windows:

py -m pip install gasp==0.4.0

Unix/macOs:

pip install gasp==0.4.0

gasp 0.3.32010-03-22T14:12:37Windows:

py -m pip install gasp==0.3.3

Unix/macOs:

pip install gasp==0.3.3

gasp 0.3.22009-08-20T14:38:01Windows:

py -m pip install gasp==0.3.2

Unix/macOs:

pip install gasp==0.3.2

gasp 0.3.12009-08-18T14:18:22Windows:

py -m pip install gasp==0.3.1

Unix/macOs:

pip install gasp==0.3.1

gasp 0.1.02007-07-11T08:22:18Windows:

py -m pip install gasp==0.1.0

Unix/macOs:

pip install gasp==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gasp_downloaded_file>

On Unix/macOs:

pip install <path_to_gasp_downloaded_file>


List distribution:

- gasp-0.1.0-py2.4.egg
- gasp-0.1.0.tar.gz
- gasp-0.3.1.tar.gz
- gasp-0.3.2-py2.6.egg
- gasp-0.3.3-py2.6.egg
- gasp-0.3.3.tar.gz
- gasp-0.4.0-py2.4.egg
- gasp-0.4.0.tar.gz
- gasp-0.4.5-py2.5.egg
- gasp-0.6.0-py3-none-any.whl (python version >=3.6)
- gasp-0.6.0.tar.gz (python version >=3.6)
- gasp-0.6.1-py3-none-any.whl (python version >=3.6)
- gasp-0.6.1.tar.gz (python version >=3.6)
- gasp-0.6.2-py3-none-any.whl (python version >=3.6)
- gasp-0.6.2.tar.gz (python version >=3.6)


Project link:

- Homepage
- Bug Tracker