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

How to install gw2apiwrapper via python pip




gw2apiwrapper - A simple wrapper around the offical Guild Wars 2 JSON API., it belongs to Classifiers:

- Programming Language :: Python :: 3 :: Only
- Topic :: Games/Entertainment

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



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_gw2apiwrapper_env

- Active the virtual environment

test_gw2apiwrapper_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_gw2apiwrapper_env

- Active the virtual environment

source test_gw2apiwrapper_env/bin/active


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

To install gw2apiwrapper on Windows(CMD):

py -m pip install gw2apiwrapper

To install gw2apiwrapper on Unix/macOs:

pip install gw2apiwrapper


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

Example:

pip install gw2apiwrapper==2.0


Please see the version list below table:

VersionReleased dateCommand
gw2apiwrapper 2.7.52020-06-16T21:40:55Windows:

py -m pip install gw2apiwrapper==2.7.5

Unix/macOs:

pip install gw2apiwrapper==2.7.5

gw2apiwrapper 2.7.42018-11-01T05:06:19Windows:

py -m pip install gw2apiwrapper==2.7.4

Unix/macOs:

pip install gw2apiwrapper==2.7.4

gw2apiwrapper 2.7.32018-08-22T07:42:15Windows:

py -m pip install gw2apiwrapper==2.7.3

Unix/macOs:

pip install gw2apiwrapper==2.7.3

gw2apiwrapper 2.7.22018-07-26T19:01:29Windows:

py -m pip install gw2apiwrapper==2.7.2

Unix/macOs:

pip install gw2apiwrapper==2.7.2

gw2apiwrapper 2.7.12018-07-24T23:26:13Windows:

py -m pip install gw2apiwrapper==2.7.1

Unix/macOs:

pip install gw2apiwrapper==2.7.1

gw2apiwrapper 2.7.02018-05-29T13:50:37Windows:

py -m pip install gw2apiwrapper==2.7.0

Unix/macOs:

pip install gw2apiwrapper==2.7.0

gw2apiwrapper 2.6.32018-05-24T18:44:46Windows:

py -m pip install gw2apiwrapper==2.6.3

Unix/macOs:

pip install gw2apiwrapper==2.6.3

gw2apiwrapper 2.02017-12-31T10:33:35Windows:

py -m pip install gw2apiwrapper==2.0

Unix/macOs:

pip install gw2apiwrapper==2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gw2apiwrapper_downloaded_file>

On Unix/macOs:

pip install <path_to_gw2apiwrapper_downloaded_file>


List distribution:

- gw2apiwrapper-2.0.tar.gz
- gw2apiwrapper-2.5.0b1.tar.gz (python version >=3.5)
- gw2apiwrapper-2.5.1b0.tar.gz (python version >=3.5)
- gw2apiwrapper-2.6.0b0.tar.gz (python version >=3.5)
- gw2apiwrapper-2.6.2b0-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.6.2b0.tar.gz (python version >=3.5)
- gw2apiwrapper-2.6.3b0-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.6.3-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.6.3.tar.gz (python version >=3.5)
- gw2apiwrapper-2.7.0-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.7.0.tar.gz (python version >=3.5)
- gw2apiwrapper-2.7.1-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.7.1.tar.gz (python version >=3.5)
- gw2apiwrapper-2.7.2-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.7.2.tar.gz (python version >=3.5)
- gw2apiwrapper-2.7.3-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.7.3.tar.gz (python version >=3.5)
- gw2apiwrapper-2.7.4-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.7.4.tar.gz (python version >=3.5)
- gw2apiwrapper-2.7.5-py3-none-any.whl (python version >=3.5)
- gw2apiwrapper-2.7.5.tar.gz (python version >=3.5)


Project link:

- Homepage