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

How to install dmr-utils via python pip




dmr-utils - ETSI DMR (Digital Mobile Radio) Tier II Utilities, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Topic :: Communications
- Topic :: Communications :: Ham Radio

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



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_dmr-utils_env

- Active the virtual environment

test_dmr-utils_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_dmr-utils_env

- Active the virtual environment

source test_dmr-utils_env/bin/active


Step 2: OK, now, let flow below content to start the installation dmr-utils

To install dmr-utils on Windows(CMD):

py -m pip install dmr-utils

To install dmr-utils on Unix/macOs:

pip install dmr-utils


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

Example:

pip install dmr-utils==0.1.19


Please see the version list below table:

VersionReleased dateCommand
dmr-utils 0.1.272021-12-15T15:06:50Windows:

py -m pip install dmr-utils==0.1.27

Unix/macOs:

pip install dmr-utils==0.1.27

dmr-utils 0.1.262019-05-09T13:55:05Windows:

py -m pip install dmr-utils==0.1.26

Unix/macOs:

pip install dmr-utils==0.1.26

dmr-utils 0.1.252019-05-07T21:24:29Windows:

py -m pip install dmr-utils==0.1.25

Unix/macOs:

pip install dmr-utils==0.1.25

dmr-utils 0.1.242019-03-10T05:08:22Windows:

py -m pip install dmr-utils==0.1.24

Unix/macOs:

pip install dmr-utils==0.1.24

dmr-utils 0.1.232019-03-10T04:00:34Windows:

py -m pip install dmr-utils==0.1.23

Unix/macOs:

pip install dmr-utils==0.1.23

dmr-utils 0.1.222019-03-01T17:51:58Windows:

py -m pip install dmr-utils==0.1.22

Unix/macOs:

pip install dmr-utils==0.1.22

dmr-utils 0.1.212019-03-01T17:05:54Windows:

py -m pip install dmr-utils==0.1.21

Unix/macOs:

pip install dmr-utils==0.1.21

dmr-utils 0.1.192018-10-17T20:43:30Windows:

py -m pip install dmr-utils==0.1.19

Unix/macOs:

pip install dmr-utils==0.1.19


Step 4: Otherwise, you can install dmr-utils from local archives:

Download the distribution file from dmr_utils-0.1.27.tar.gz or the specific dmr-utils version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_dmr-utils_downloaded_file>

On Unix/macOs:

pip install <path_to_dmr-utils_downloaded_file>


List distribution:

- dmr_utils-0.1.19-py2-none-any.whl
- dmr_utils-0.1.19.tar.gz
- dmr_utils-0.1.21-py2-none-any.whl
- dmr_utils-0.1.21.tar.gz
- dmr_utils-0.1.22-py2-none-any.whl
- dmr_utils-0.1.22.tar.gz
- dmr_utils-0.1.23-py2-none-any.whl
- dmr_utils-0.1.23.tar.gz
- dmr_utils-0.1.24-py2-none-any.whl
- dmr_utils-0.1.24.tar.gz
- dmr_utils-0.1.25-py2-none-any.whl
- dmr_utils-0.1.25.tar.gz
- dmr_utils-0.1.26-py2-none-any.whl
- dmr_utils-0.1.26.tar.gz
- dmr_utils-0.1.27.tar.gz


Project link:

- Homepage