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

How to install gw2api via python pip




gw2api - Guild Wars 2 API, it belongs to Classifiers:

- Topic :: Games/Entertainment

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



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_gw2api_env

- Active the virtual environment

test_gw2api_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_gw2api_env

- Active the virtual environment

source test_gw2api_env/bin/active


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

To install gw2api on Windows(CMD):

py -m pip install gw2api

To install gw2api on Unix/macOs:

pip install gw2api


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

Example:

pip install gw2api==1.0.1


Please see the version list below table:

VersionReleased dateCommand
gw2api 1.1.42017-07-09T07:51:47Windows:

py -m pip install gw2api==1.1.4

Unix/macOs:

pip install gw2api==1.1.4

gw2api 1.1.32017-03-02T14:29:43Windows:

py -m pip install gw2api==1.1.3

Unix/macOs:

pip install gw2api==1.1.3

gw2api 1.1.22016-08-01T09:27:29Windows:

py -m pip install gw2api==1.1.2

Unix/macOs:

pip install gw2api==1.1.2

gw2api 1.1.12016-05-21T21:14:09Windows:

py -m pip install gw2api==1.1.1

Unix/macOs:

pip install gw2api==1.1.1

gw2api 1.1.02016-05-13T07:23:45Windows:

py -m pip install gw2api==1.1.0

Unix/macOs:

pip install gw2api==1.1.0

gw2api 1.0.112016-03-24T18:24:08Windows:

py -m pip install gw2api==1.0.11

Unix/macOs:

pip install gw2api==1.0.11

gw2api 1.0.102016-02-25T14:35:38Windows:

py -m pip install gw2api==1.0.10

Unix/macOs:

pip install gw2api==1.0.10

gw2api 1.0.92016-01-25T09:04:57Windows:

py -m pip install gw2api==1.0.9

Unix/macOs:

pip install gw2api==1.0.9

gw2api 1.0.82016-01-21T19:01:01Windows:

py -m pip install gw2api==1.0.8

Unix/macOs:

pip install gw2api==1.0.8

gw2api 1.0.72015-12-24T13:39:34Windows:

py -m pip install gw2api==1.0.7

Unix/macOs:

pip install gw2api==1.0.7

gw2api 1.0.62015-11-13T12:08:53Windows:

py -m pip install gw2api==1.0.6

Unix/macOs:

pip install gw2api==1.0.6

gw2api 1.0.52015-11-13T12:01:43Windows:

py -m pip install gw2api==1.0.5

Unix/macOs:

pip install gw2api==1.0.5

gw2api 1.0.42015-07-04T10:59:23Windows:

py -m pip install gw2api==1.0.4

Unix/macOs:

pip install gw2api==1.0.4

gw2api 1.0.32014-07-07T19:29:39Windows:

py -m pip install gw2api==1.0.3

Unix/macOs:

pip install gw2api==1.0.3

gw2api 1.0.22014-06-26T19:13:35Windows:

py -m pip install gw2api==1.0.2

Unix/macOs:

pip install gw2api==1.0.2

gw2api 1.0.12013-10-18T15:05:15Windows:

py -m pip install gw2api==1.0.1

Unix/macOs:

pip install gw2api==1.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gw2api_downloaded_file>

On Unix/macOs:

pip install <path_to_gw2api_downloaded_file>


List distribution:

- gw2api-1.0.1.tar.gz
- gw2api-1.0.2.tar.gz
- gw2api-1.0.3.tar.gz
- gw2api-1.0.4.tar.gz
- gw2api-1.0.5.tar.gz
- gw2api-1.0.6.tar.gz
- gw2api-1.0.7.tar.gz
- gw2api-1.0.8.tar.gz
- gw2api-1.0.9.tar.gz
- gw2api-1.0.10.tar.gz
- gw2api-1.0.11.tar.gz
- gw2api-1.1.0.tar.gz
- gw2api-1.1.1.tar.gz
- gw2api-1.1.1.zip
- gw2api-1.1.2.tar.gz
- gw2api-1.1.3.tar.gz
- gw2api-1.1.4-py2.py3-none-any.whl
- gw2api-1.1.4.tar.gz


Project link:

- Homepage