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

How to install sc2maptool via python pip




sc2maptool - Manage Starcraft2 (SC2) maps for use by developers creating bots, AI agents or some other custom code project., it belongs to Classifiers:

- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Games/Entertainment
- Topic :: Games/Entertainment :: Real Time Strategy
- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_sc2maptool_env

- Active the virtual environment

test_sc2maptool_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_sc2maptool_env

- Active the virtual environment

source test_sc2maptool_env/bin/active


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

To install sc2maptool on Windows(CMD):

py -m pip install sc2maptool

To install sc2maptool on Unix/macOs:

pip install sc2maptool


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

Example:

pip install sc2maptool==1.0.2


Please see the version list below table:

VersionReleased dateCommand
sc2maptool 1.1.22018-10-08T01:58:39Windows:

py -m pip install sc2maptool==1.1.2

Unix/macOs:

pip install sc2maptool==1.1.2

sc2maptool 1.1.12018-10-07T20:04:45Windows:

py -m pip install sc2maptool==1.1.1

Unix/macOs:

pip install sc2maptool==1.1.1

sc2maptool 1.1.02018-10-07T20:03:39Windows:

py -m pip install sc2maptool==1.1.0

Unix/macOs:

pip install sc2maptool==1.1.0

sc2maptool 1.0.122018-09-23T15:16:31Windows:

py -m pip install sc2maptool==1.0.12

Unix/macOs:

pip install sc2maptool==1.0.12

sc2maptool 1.0.102018-08-27T03:31:20Windows:

py -m pip install sc2maptool==1.0.10

Unix/macOs:

pip install sc2maptool==1.0.10

sc2maptool 1.0.82018-08-12T23:34:42Windows:

py -m pip install sc2maptool==1.0.8

Unix/macOs:

pip install sc2maptool==1.0.8

sc2maptool 1.0.72018-08-12T21:31:18Windows:

py -m pip install sc2maptool==1.0.7

Unix/macOs:

pip install sc2maptool==1.0.7

sc2maptool 1.0.52018-07-14T23:02:06Windows:

py -m pip install sc2maptool==1.0.5

Unix/macOs:

pip install sc2maptool==1.0.5

sc2maptool 1.0.42018-07-14T22:50:17Windows:

py -m pip install sc2maptool==1.0.4

Unix/macOs:

pip install sc2maptool==1.0.4

sc2maptool 1.0.32018-07-14T22:47:54Windows:

py -m pip install sc2maptool==1.0.3

Unix/macOs:

pip install sc2maptool==1.0.3

sc2maptool 1.0.22018-07-13T05:38:13Windows:

py -m pip install sc2maptool==1.0.2

Unix/macOs:

pip install sc2maptool==1.0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sc2maptool_downloaded_file>

On Unix/macOs:

pip install <path_to_sc2maptool_downloaded_file>


List distribution:


Project link:

- Homepage