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

How to install thermalprinter via python pip




thermalprinter - Driver for the DP-EH600 thermal printer (AdaFruit)., it belongs to Classifiers:

- Programming Language :: Python :: 3.5
- Topic :: Printing
- Topic :: Software Development :: Libraries
- Topic :: System
- Topic :: System :: Hardware
- Topic :: System :: Hardware :: Hardware Drivers

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



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_thermalprinter_env

- Active the virtual environment

test_thermalprinter_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_thermalprinter_env

- Active the virtual environment

source test_thermalprinter_env/bin/active


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

To install thermalprinter on Windows(CMD):

py -m pip install thermalprinter

To install thermalprinter on Unix/macOs:

pip install thermalprinter


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

Example:

pip install thermalprinter==0.1.0


Please see the version list below table:

VersionReleased dateCommand
thermalprinter 0.2.02019-01-10T12:02:20Windows:

py -m pip install thermalprinter==0.2.0

Unix/macOs:

pip install thermalprinter==0.2.0

thermalprinter 0.1.72017-05-07T11:16:55Windows:

py -m pip install thermalprinter==0.1.7

Unix/macOs:

pip install thermalprinter==0.1.7

thermalprinter 0.1.12016-09-29T11:44:46Windows:

py -m pip install thermalprinter==0.1.1

Unix/macOs:

pip install thermalprinter==0.1.1

thermalprinter 0.1.02016-09-28T16:35:04Windows:

py -m pip install thermalprinter==0.1.0

Unix/macOs:

pip install thermalprinter==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_thermalprinter_downloaded_file>

On Unix/macOs:

pip install <path_to_thermalprinter_downloaded_file>


List distribution:


Project link:

- Homepage