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

How to install pymahjong via python pip




pymahjong - A Japanese Mahjong environment for decision AI research., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Intended Audience :: Science/Research
- License :: OSI Approved :: Apache Software License
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: Unix
- Programming Language :: C
- Programming Language :: C++
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_pymahjong_env

- Active the virtual environment

test_pymahjong_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_pymahjong_env

- Active the virtual environment

source test_pymahjong_env/bin/active


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

To install pymahjong on Windows(CMD):

py -m pip install pymahjong

To install pymahjong on Unix/macOs:

pip install pymahjong


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

Example:

pip install pymahjong==0.1                                                                          yanked


Please see the version list below table:

VersionReleased dateCommand
pymahjong 1.0.22022-04-07T05:10:31Windows:

py -m pip install pymahjong==1.0.2

Unix/macOs:

pip install pymahjong==1.0.2

pymahjong 1.0.12022-03-31T06:49:30Windows:

py -m pip install pymahjong==1.0.1

Unix/macOs:

pip install pymahjong==1.0.1

pymahjong 1.0.02022-03-15T11:20:03Windows:

py -m pip install pymahjong==1.0.0

Unix/macOs:

pip install pymahjong==1.0.0

pymahjong 0.1 yanked2022-01-23T10:51:50Windows:

py -m pip install pymahjong==0.1                                                                          yanked

Unix/macOs:

pip install pymahjong==0.1                                                                          yanked


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

Download the distribution file from pymahjong-1.0.2-cp310-cp310-win_amd64.whl or the specific pymahjong version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pymahjong_downloaded_file>

On Unix/macOs:

pip install <path_to_pymahjong_downloaded_file>


List distribution:


Project link:

- Source Code