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

How to install HanhanAI via python pip




HanhanAI - Universal game AI system for game developer, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- Natural Language :: Chinese (Simplified)
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Microsoft :: Windows :: Windows 10
- Topic :: Adaptive Technologies

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



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_HanhanAI_env

- Active the virtual environment

test_HanhanAI_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_HanhanAI_env

- Active the virtual environment

source test_HanhanAI_env/bin/active


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

To install HanhanAI on Windows(CMD):

py -m pip install HanhanAI

To install HanhanAI on Unix/macOs:

pip install HanhanAI


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

Example:

pip install HanhanAI==1.0.0


Please see the version list below table:

VersionReleased dateCommand
HanhanAI 2.0.22019-09-10T08:16:44Windows:

py -m pip install HanhanAI==2.0.2

Unix/macOs:

pip install HanhanAI==2.0.2

HanhanAI 2.0.12019-09-10T03:21:53Windows:

py -m pip install HanhanAI==2.0.1

Unix/macOs:

pip install HanhanAI==2.0.1

HanhanAI 2.0.02019-09-10T02:30:42Windows:

py -m pip install HanhanAI==2.0.0

Unix/macOs:

pip install HanhanAI==2.0.0

HanhanAI 1.0.12019-09-10T01:44:23Windows:

py -m pip install HanhanAI==1.0.1

Unix/macOs:

pip install HanhanAI==1.0.1

HanhanAI 1.0.02019-09-06T03:10:33Windows:

py -m pip install HanhanAI==1.0.0

Unix/macOs:

pip install HanhanAI==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_HanhanAI_downloaded_file>

On Unix/macOs:

pip install <path_to_HanhanAI_downloaded_file>


List distribution:

- HanhanAI-1.0.0-py2.py3-none-any.whl
- HanhanAI-1.0.0.tar.gz
- HanhanAI-1.0.1-py2.py3-none-any.whl
- HanhanAI-1.0.1.tar.gz
- HanhanAI-2.0.0-py2.py3-none-any.whl
- HanhanAI-2.0.0.tar.gz
- HanhanAI-2.0.1-py2.py3-none-any.whl
- HanhanAI-2.0.1.tar.gz
- HanhanAI-2.0.2-py2.py3-none-any.whl
- HanhanAI-2.0.2.tar.gz


Project link:

- Homepage