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

How to install pyrtlsdr via python pip




pyrtlsdr - A Python wrapper for librtlsdr (a driver for Realtek RTL2832U based SDR's), it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License (GPL)
- Topic :: Utilities

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



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_pyrtlsdr_env

- Active the virtual environment

test_pyrtlsdr_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_pyrtlsdr_env

- Active the virtual environment

source test_pyrtlsdr_env/bin/active


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

To install pyrtlsdr on Windows(CMD):

py -m pip install pyrtlsdr

To install pyrtlsdr on Unix/macOs:

pip install pyrtlsdr


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

Example:

pip install pyrtlsdr==0.1.1


Please see the version list below table:

VersionReleased dateCommand
pyrtlsdr 0.2.932022-08-01T22:14:20Windows:

py -m pip install pyrtlsdr==0.2.93

Unix/macOs:

pip install pyrtlsdr==0.2.93

pyrtlsdr 0.2.922020-03-06T20:02:17Windows:

py -m pip install pyrtlsdr==0.2.92

Unix/macOs:

pip install pyrtlsdr==0.2.92

pyrtlsdr 0.2.912018-12-15T19:11:36Windows:

py -m pip install pyrtlsdr==0.2.91

Unix/macOs:

pip install pyrtlsdr==0.2.91

pyrtlsdr 0.2.92018-08-17T17:01:23Windows:

py -m pip install pyrtlsdr==0.2.9

Unix/macOs:

pip install pyrtlsdr==0.2.9

pyrtlsdr 0.2.82018-05-04T17:12:29Windows:

py -m pip install pyrtlsdr==0.2.8

Unix/macOs:

pip install pyrtlsdr==0.2.8

pyrtlsdr 0.2.72017-09-30T21:04:31Windows:

py -m pip install pyrtlsdr==0.2.7

Unix/macOs:

pip install pyrtlsdr==0.2.7

pyrtlsdr 0.2.62017-09-30T20:15:10Windows:

py -m pip install pyrtlsdr==0.2.6

Unix/macOs:

pip install pyrtlsdr==0.2.6

pyrtlsdr 0.2.52017-07-07T20:46:32Windows:

py -m pip install pyrtlsdr==0.2.5

Unix/macOs:

pip install pyrtlsdr==0.2.5

pyrtlsdr 0.2.42016-08-18T18:17:48Windows:

py -m pip install pyrtlsdr==0.2.4

Unix/macOs:

pip install pyrtlsdr==0.2.4

pyrtlsdr 0.2.32016-04-30T17:45:45Windows:

py -m pip install pyrtlsdr==0.2.3

Unix/macOs:

pip install pyrtlsdr==0.2.3

pyrtlsdr 0.2.22016-03-18T20:58:59Windows:

py -m pip install pyrtlsdr==0.2.2

Unix/macOs:

pip install pyrtlsdr==0.2.2

pyrtlsdr 0.2.12016-03-14T23:47:05Windows:

py -m pip install pyrtlsdr==0.2.1

Unix/macOs:

pip install pyrtlsdr==0.2.1

pyrtlsdr 0.2.02014-06-11T21:58:04Windows:

py -m pip install pyrtlsdr==0.2.0

Unix/macOs:

pip install pyrtlsdr==0.2.0

pyrtlsdr 0.1.12013-04-23T23:41:53Windows:

py -m pip install pyrtlsdr==0.1.1

Unix/macOs:

pip install pyrtlsdr==0.1.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyrtlsdr_downloaded_file>

On Unix/macOs:

pip install <path_to_pyrtlsdr_downloaded_file>


List distribution:


Project link:

- Homepage
- Documentation
- Source