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

How to install wasabi2d via python pip




wasabi2d - A convenient 2D OpenGL games framework, it belongs to Classifiers:

- Intended Audience :: Education
- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Topic :: Education
- Topic :: Games/Entertainment

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



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_wasabi2d_env

- Active the virtual environment

test_wasabi2d_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_wasabi2d_env

- Active the virtual environment

source test_wasabi2d_env/bin/active


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

To install wasabi2d on Windows(CMD):

py -m pip install wasabi2d

To install wasabi2d on Unix/macOs:

pip install wasabi2d


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

Example:

pip install wasabi2d==1.0.0


Please see the version list below table:

VersionReleased dateCommand
wasabi2d 1.4.02020-07-09T08:34:36Windows:

py -m pip install wasabi2d==1.4.0

Unix/macOs:

pip install wasabi2d==1.4.0

wasabi2d 1.3.02019-12-10T18:58:14Windows:

py -m pip install wasabi2d==1.3.0

Unix/macOs:

pip install wasabi2d==1.3.0

wasabi2d 1.2.02019-09-29T00:12:00Windows:

py -m pip install wasabi2d==1.2.0

Unix/macOs:

pip install wasabi2d==1.2.0

wasabi2d 1.1.02019-09-22T21:18:30Windows:

py -m pip install wasabi2d==1.1.0

Unix/macOs:

pip install wasabi2d==1.1.0

wasabi2d 1.0.02019-09-21T22:20:57Windows:

py -m pip install wasabi2d==1.0.0

Unix/macOs:

pip install wasabi2d==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_wasabi2d_downloaded_file>

On Unix/macOs:

pip install <path_to_wasabi2d_downloaded_file>


List distribution:


Project link:

- Homepage