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

How to install dice via python pip




dice - A library for parsing and evaluating dice notation, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Intended Audience :: Developers
- Intended Audience :: Other Audience
- Programming Language :: Python :: 3.9
- Topic :: Games/Entertainment
- Topic :: Games/Entertainment :: Board Games
- Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
- Topic :: Games/Entertainment :: Role-Playing
- Topic :: Games/Entertainment :: Turn Based Strategy
- Topic :: Utilities

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



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_dice_env

- Active the virtual environment

test_dice_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_dice_env

- Active the virtual environment

source test_dice_env/bin/active


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

To install dice on Windows(CMD):

py -m pip install dice

To install dice on Unix/macOs:

pip install dice


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

Example:

pip install dice==0.0.0


Please see the version list below table:

VersionReleased dateCommand
dice 3.1.22021-04-07T22:10:31Windows:

py -m pip install dice==3.1.2

Unix/macOs:

pip install dice==3.1.2

dice 3.1.12020-12-03T09:37:59Windows:

py -m pip install dice==3.1.1

Unix/macOs:

pip install dice==3.1.1

dice 3.1.02019-12-13T09:07:46Windows:

py -m pip install dice==3.1.0

Unix/macOs:

pip install dice==3.1.0

dice 3.0.02019-12-04T15:57:03Windows:

py -m pip install dice==3.0.0

Unix/macOs:

pip install dice==3.0.0

dice 2.4.22019-07-23T02:14:26Windows:

py -m pip install dice==2.4.2

Unix/macOs:

pip install dice==2.4.2

dice 2.4.12019-04-09T21:11:17Windows:

py -m pip install dice==2.4.1

Unix/macOs:

pip install dice==2.4.1

dice 2.4.02018-11-10T01:40:49Windows:

py -m pip install dice==2.4.0

Unix/macOs:

pip install dice==2.4.0

dice 2.3.52018-07-31T15:19:46Windows:

py -m pip install dice==2.3.5

Unix/macOs:

pip install dice==2.3.5

dice 2.3.42018-07-23T13:35:17Windows:

py -m pip install dice==2.3.4

Unix/macOs:

pip install dice==2.3.4

dice 2.3.32018-07-02T02:36:44Windows:

py -m pip install dice==2.3.3

Unix/macOs:

pip install dice==2.3.3

dice 2.3.22018-06-30T01:01:58Windows:

py -m pip install dice==2.3.2

Unix/macOs:

pip install dice==2.3.2

dice 2.3.12018-05-12T21:33:44Windows:

py -m pip install dice==2.3.1

Unix/macOs:

pip install dice==2.3.1

dice 2.3.02018-05-04T05:46:04Windows:

py -m pip install dice==2.3.0

Unix/macOs:

pip install dice==2.3.0

dice 2.2.02018-03-04T01:04:26Windows:

py -m pip install dice==2.2.0

Unix/macOs:

pip install dice==2.2.0

dice 2.1.12017-11-27T12:46:20Windows:

py -m pip install dice==2.1.1

Unix/macOs:

pip install dice==2.1.1

dice 2.1.02017-11-25T19:13:00Windows:

py -m pip install dice==2.1.0

Unix/macOs:

pip install dice==2.1.0

dice 2.0.02017-11-21T14:56:36Windows:

py -m pip install dice==2.0.0

Unix/macOs:

pip install dice==2.0.0

dice 1.1.12017-05-22T08:58:45Windows:

py -m pip install dice==1.1.1

Unix/macOs:

pip install dice==1.1.1

dice 1.1.02016-07-12T13:42:20Windows:

py -m pip install dice==1.1.0

Unix/macOs:

pip install dice==1.1.0

dice 1.0.32016-05-16T08:33:02Windows:

py -m pip install dice==1.0.3

Unix/macOs:

pip install dice==1.0.3

dice 1.0.22015-01-05T19:12:30Windows:

py -m pip install dice==1.0.2

Unix/macOs:

pip install dice==1.0.2

dice 1.0.12014-04-27T16:21:16Windows:

py -m pip install dice==1.0.1

Unix/macOs:

pip install dice==1.0.1

dice 1.0.02013-09-04T19:04:43Windows:

py -m pip install dice==1.0.0

Unix/macOs:

pip install dice==1.0.0

dice 0.4.02013-09-03T20:09:51Windows:

py -m pip install dice==0.4.0

Unix/macOs:

pip install dice==0.4.0

dice 0.3.22013-09-02T21:40:44Windows:

py -m pip install dice==0.3.2

Unix/macOs:

pip install dice==0.3.2

dice 0.1.72013-08-22T21:50:39Windows:

py -m pip install dice==0.1.7

Unix/macOs:

pip install dice==0.1.7

dice 0.1.62013-08-22T00:55:58Windows:

py -m pip install dice==0.1.6

Unix/macOs:

pip install dice==0.1.6

dice 0.1.02013-08-05T22:23:07Windows:

py -m pip install dice==0.1.0

Unix/macOs:

pip install dice==0.1.0

dice 0.0.02013-08-05T18:58:19Windows:

py -m pip install dice==0.0.0

Unix/macOs:

pip install dice==0.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_dice_downloaded_file>

On Unix/macOs:

pip install <path_to_dice_downloaded_file>


List distribution:

- dice-0.1.0.tar.gz
- dice-0.1.6.tar.gz
- dice-0.1.7.tar.gz
- dice-0.3.2.tar.gz
- dice-0.4.0.tar.gz
- dice-1.0.0.tar.gz
- dice-1.0.1-py2-none-any.whl
- dice-1.0.1.tar.gz
- dice-1.0.2-py2-none-any.whl
- dice-1.0.2-py2.py3-none-any.whl
- dice-1.0.2.tar.gz
- dice-1.0.3-py2.py3-none-any.whl
- dice-1.0.3.tar.gz
- dice-1.1.0-py2.py3-none-any.whl
- dice-1.1.0.tar.gz
- dice-1.1.1-py2.py3-none-any.whl
- dice-1.1.1.tar.gz
- dice-2.0.0-py2.py3-none-any.whl
- dice-2.0.0.tar.gz
- dice-2.1.0-py2.py3-none-any.whl
- dice-2.1.0.tar.gz
- dice-2.1.1-py2.py3-none-any.whl
- dice-2.1.1.tar.gz
- dice-2.2.0-py2.py3-none-any.whl
- dice-2.2.0.tar.gz
- dice-2.3.0-py2.py3-none-any.whl
- dice-2.3.0.tar.gz
- dice-2.3.1-py2.py3-none-any.whl
- dice-2.3.1.tar.gz
- dice-2.3.2-py2.py3-none-any.whl
- dice-2.3.2.tar.gz
- dice-2.3.3-py2.py3-none-any.whl
- dice-2.3.3.tar.gz
- dice-2.3.4-py2.py3-none-any.whl
- dice-2.3.4.tar.gz
- dice-2.3.5-py2.py3-none-any.whl
- dice-2.3.5.linux-x86_64.tar.gz
- dice-2.4.0-py2.py3-none-any.whl
- dice-2.4.0.tar.gz
- dice-2.4.1-py2.py3-none-any.whl
- dice-2.4.1.tar.gz
- dice-2.4.2-py2.py3-none-any.whl
- dice-2.4.2.tar.gz
- dice-3.0.0-py2.py3-none-any.whl
- dice-3.0.0.tar.gz
- dice-3.1.0-py2.py3-none-any.whl
- dice-3.1.0.tar.gz
- dice-3.1.1-py2.py3-none-any.whl
- dice-3.1.1.tar.gz
- dice-3.1.2-py2.py3-none-any.whl
- dice-3.1.2.tar.gz


Project link:

- Homepage