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

How to install terminal-minesweeper via python pip




terminal-minesweeper - A pure Python implementation of minesweeper using curses, it belongs to Classifiers:

- Environment :: Console
- Environment :: Console :: Curses
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Microsoft :: Windows :: Windows 10
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Topic :: Games/Entertainment

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



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_terminal-minesweeper_env

- Active the virtual environment

test_terminal-minesweeper_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_terminal-minesweeper_env

- Active the virtual environment

source test_terminal-minesweeper_env/bin/active


Step 2: OK, now, let flow below content to start the installation terminal-minesweeper

To install terminal-minesweeper on Windows(CMD):

py -m pip install terminal-minesweeper

To install terminal-minesweeper on Unix/macOs:

pip install terminal-minesweeper


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

Example:

pip install terminal-minesweeper==0.1.3


Please see the version list below table:

VersionReleased dateCommand
terminal-minesweeper 0.2.42022-08-01T09:17:10Windows:

py -m pip install terminal-minesweeper==0.2.4

Unix/macOs:

pip install terminal-minesweeper==0.2.4

terminal-minesweeper 0.2.32022-08-01T06:38:22Windows:

py -m pip install terminal-minesweeper==0.2.3

Unix/macOs:

pip install terminal-minesweeper==0.2.3

terminal-minesweeper 0.2.22022-08-01T04:31:43Windows:

py -m pip install terminal-minesweeper==0.2.2

Unix/macOs:

pip install terminal-minesweeper==0.2.2

terminal-minesweeper 0.2.12022-07-24T03:56:36Windows:

py -m pip install terminal-minesweeper==0.2.1

Unix/macOs:

pip install terminal-minesweeper==0.2.1

terminal-minesweeper 0.2.02022-07-16T07:43:54Windows:

py -m pip install terminal-minesweeper==0.2.0

Unix/macOs:

pip install terminal-minesweeper==0.2.0

terminal-minesweeper 0.1.32022-07-03T08:58:02Windows:

py -m pip install terminal-minesweeper==0.1.3

Unix/macOs:

pip install terminal-minesweeper==0.1.3


Step 4: Otherwise, you can install terminal-minesweeper from local archives:

Download the distribution file from terminal-minesweeper-0.2.4.tar.gz or the specific terminal-minesweeper version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_terminal-minesweeper_downloaded_file>

On Unix/macOs:

pip install <path_to_terminal-minesweeper_downloaded_file>


List distribution:


Project link:

- Homepage
- GitHub