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

How to install housie via python pip




housie - All the core logic for playing/simulating the popular game 'Housie' (also known as 'Bingo' or 'Tambola'), it belongs to Classifiers:

- License :: OSI Approved
- License :: OSI Approved :: Apache Software License
- Operating System :: OS Independent
- Programming Language :: Python
- Programming Language :: Python :: 3

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



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_housie_env

- Active the virtual environment

test_housie_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_housie_env

- Active the virtual environment

source test_housie_env/bin/active


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

To install housie on Windows(CMD):

py -m pip install housie

To install housie on Unix/macOs:

pip install housie


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

Example:

pip install housie==0.0.2


Please see the version list below table:

VersionReleased dateCommand
housie 0.1.72022-08-17T13:35:39Windows:

py -m pip install housie==0.1.7

Unix/macOs:

pip install housie==0.1.7

housie 0.1.62021-07-28T13:50:37Windows:

py -m pip install housie==0.1.6

Unix/macOs:

pip install housie==0.1.6

housie 0.1.52021-07-24T18:26:29Windows:

py -m pip install housie==0.1.5

Unix/macOs:

pip install housie==0.1.5

housie 0.1.42021-02-04T20:04:36Windows:

py -m pip install housie==0.1.4

Unix/macOs:

pip install housie==0.1.4

housie 0.1.32020-12-18T17:24:42Windows:

py -m pip install housie==0.1.3

Unix/macOs:

pip install housie==0.1.3

housie 0.1.22020-12-07T18:44:35Windows:

py -m pip install housie==0.1.2

Unix/macOs:

pip install housie==0.1.2

housie 0.1.12020-10-02T14:37:01Windows:

py -m pip install housie==0.1.1

Unix/macOs:

pip install housie==0.1.1

housie 0.1.02020-08-16T11:02:19Windows:

py -m pip install housie==0.1.0

Unix/macOs:

pip install housie==0.1.0

housie 0.0.32020-08-15T10:24:56Windows:

py -m pip install housie==0.0.3

Unix/macOs:

pip install housie==0.0.3

housie 0.0.22020-08-14T19:04:58Windows:

py -m pip install housie==0.0.2

Unix/macOs:

pip install housie==0.0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_housie_downloaded_file>

On Unix/macOs:

pip install <path_to_housie_downloaded_file>


List distribution:

- housie-0.0.2-py3-none-any.whl (python version >=3.6)
- housie-0.0.2.tar.gz (python version >=3.6)
- housie-0.0.3-py3-none-any.whl (python version >=3.6)
- housie-0.0.3.tar.gz (python version >=3.6)
- housie-0.1.0-py3-none-any.whl (python version >=3.6)
- housie-0.1.0-py3.7.egg (python version >=3.6)
- housie-0.1.0.tar.gz (python version >=3.6)
- housie-0.1.1-py3-none-any.whl (python version >=3.6)
- housie-0.1.1.tar.gz (python version >=3.6)
- housie-0.1.2-py3-none-any.whl (python version >=3.6)
- housie-0.1.2.tar.gz (python version >=3.6)
- housie-0.1.3-py3-none-any.whl (python version >=3.6)
- housie-0.1.3.tar.gz (python version >=3.6)
- housie-0.1.4-py3-none-any.whl (python version >=3.6)
- housie-0.1.4.tar.gz (python version >=3.6)
- housie-0.1.5-py3-none-any.whl (python version >=3.6)
- housie-0.1.5.tar.gz (python version >=3.6)
- housie-0.1.6-py3-none-any.whl (python version >=3.6)
- housie-0.1.6.tar.gz (python version >=3.6)
- housie-0.1.7-py3-none-any.whl (python version >=3.6)
- housie-0.1.7.tar.gz (python version >=3.6)
- housie-0.1.8-py3-none-any.whl (python version >=3.6)
- housie-0.1.8.tar.gz (python version >=3.6)
- housie-0.1.9-py3-none-any.whl (python version >=3.6)
- housie-0.1.9.tar.gz (python version >=3.6)
- housie-0.2.0-py3-none-any.whl (python version >=3.6)
- housie-0.2.0.tar.gz (python version >=3.6)
- housie-0.2.1-py3-none-any.whl (python version >=3.6)
- housie-0.2.1.tar.gz (python version >=3.6)


Project link:

- Homepage
- Source