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

How to install dyce via python pip




dyce - Simple Python tools for exploring dice outcomes and other finite discrete probabilities, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Developers
- Intended Audience :: Education
- Intended Audience :: Science/Research
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Education
- Topic :: Games/Entertainment
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Mathematics
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules
- Typing :: Typed

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



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_dyce_env

- Active the virtual environment

test_dyce_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_dyce_env

- Active the virtual environment

source test_dyce_env/bin/active


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

To install dyce on Windows(CMD):

py -m pip install dyce

To install dyce on Unix/macOs:

pip install dyce


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

Example:

pip install dyce==0.2


Please see the version list below table:

VersionReleased dateCommand
dyce 0.6.02022-08-19T02:36:15Windows:

py -m pip install dyce==0.6.0

Unix/macOs:

pip install dyce==0.6.0

dyce 0.5.22022-01-08T18:37:52Windows:

py -m pip install dyce==0.5.2

Unix/macOs:

pip install dyce==0.5.2

dyce 0.5.12022-01-08T15:33:20Windows:

py -m pip install dyce==0.5.1

Unix/macOs:

pip install dyce==0.5.1

dyce 0.5.02022-01-03T19:14:01Windows:

py -m pip install dyce==0.5.0

Unix/macOs:

pip install dyce==0.5.0

dyce 0.4.52021-12-16T03:39:10Windows:

py -m pip install dyce==0.4.5

Unix/macOs:

pip install dyce==0.4.5

dyce 0.4.42021-12-11T16:32:01Windows:

py -m pip install dyce==0.4.4

Unix/macOs:

pip install dyce==0.4.4

dyce 0.4.32021-11-13T05:16:12Windows:

py -m pip install dyce==0.4.3

Unix/macOs:

pip install dyce==0.4.3

dyce 0.4.22021-11-06T15:29:08Windows:

py -m pip install dyce==0.4.2

Unix/macOs:

pip install dyce==0.4.2

dyce 0.4.12021-11-05T15:23:37Windows:

py -m pip install dyce==0.4.1

Unix/macOs:

pip install dyce==0.4.1

dyce 0.2.12008-12-17T01:47:07Windows:

py -m pip install dyce==0.2.1

Unix/macOs:

pip install dyce==0.2.1

dyce 0.22008-12-09T16:36:22Windows:

py -m pip install dyce==0.2

Unix/macOs:

pip install dyce==0.2


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

Download the distribution file from dyce-0.6.0-py3-none-any.whl or the specific dyce version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_dyce_downloaded_file>

On Unix/macOs:

pip install <path_to_dyce_downloaded_file>


List distribution:

- dyce-0.2-py2.5.egg
- dyce-0.2.tar.gz
- dyce-0.4.1-py3-none-any.whl (python version >=3.7)
- dyce-0.4.1.tar.gz (python version >=3.7)
- dyce-0.4.2-py3-none-any.whl (python version >=3.7)
- dyce-0.4.2.tar.gz (python version >=3.7)
- dyce-0.4.3-py3-none-any.whl (python version >=3.7)
- dyce-0.4.3.tar.gz (python version >=3.7)
- dyce-0.4.4-py3-none-any.whl (python version >=3.7)
- dyce-0.4.5-py3-none-any.whl (python version >=3.7)
- dyce-0.5.0-py3-none-any.whl (python version >=3.7)
- dyce-0.5.1-py3-none-any.whl (python version >=3.7)
- dyce-0.5.2-py3-none-any.whl (python version >=3.7)
- dyce-0.6.0-py3-none-any.whl (python version >=3.9)


Project link:

- Homepage
- Source Repository