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

How to install PyBOMBS via python pip




PyBOMBS - A meta-package manager to install software from source, or whatever the local package manager is. Designed for easy install of source trees for the GNU Radio project., it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: System Administrators
- Intended Audience :: Telecommunications Industry
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Operating System :: POSIX
- Topic :: Communications
- Topic :: Communications :: Ham Radio
- Topic :: Software Development :: Build Tools
- Topic :: Software Development :: Embedded Systems
- Topic :: System
- Topic :: System :: Archiving
- Topic :: System :: Archiving :: Packaging
- Topic :: System :: Installation/Setup
- Topic :: System :: Software Distribution
- Topic :: Utilities

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



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_PyBOMBS_env

- Active the virtual environment

test_PyBOMBS_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_PyBOMBS_env

- Active the virtual environment

source test_PyBOMBS_env/bin/active


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

To install PyBOMBS on Windows(CMD):

py -m pip install PyBOMBS

To install PyBOMBS on Unix/macOs:

pip install PyBOMBS


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

Example:

pip install PyBOMBS==2.0.0a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
PyBOMBS 2.3.52021-09-30T20:55:24Windows:

py -m pip install PyBOMBS==2.3.5

Unix/macOs:

pip install PyBOMBS==2.3.5

PyBOMBS 2.3.42020-09-04T21:46:46Windows:

py -m pip install PyBOMBS==2.3.4

Unix/macOs:

pip install PyBOMBS==2.3.4

PyBOMBS 2.3.32018-09-17T16:36:28Windows:

py -m pip install PyBOMBS==2.3.3

Unix/macOs:

pip install PyBOMBS==2.3.3

PyBOMBS 2.3.22017-09-13T23:46:01Windows:

py -m pip install PyBOMBS==2.3.2

Unix/macOs:

pip install PyBOMBS==2.3.2

PyBOMBS 2.3.12017-07-08T07:31:15Windows:

py -m pip install PyBOMBS==2.3.1

Unix/macOs:

pip install PyBOMBS==2.3.1

PyBOMBS 2.3.02016-11-21T21:11:10Windows:

py -m pip install PyBOMBS==2.3.0

Unix/macOs:

pip install PyBOMBS==2.3.0

PyBOMBS 2.2.02016-09-18T02:16:18Windows:

py -m pip install PyBOMBS==2.2.0

Unix/macOs:

pip install PyBOMBS==2.2.0

PyBOMBS 2.1.02016-06-26T23:12:30Windows:

py -m pip install PyBOMBS==2.1.0

Unix/macOs:

pip install PyBOMBS==2.1.0

PyBOMBS 2.0.12016-02-21T06:18:11Windows:

py -m pip install PyBOMBS==2.0.1

Unix/macOs:

pip install PyBOMBS==2.0.1

PyBOMBS 2.0.02016-01-25T16:00:21Windows:

py -m pip install PyBOMBS==2.0.0

Unix/macOs:

pip install PyBOMBS==2.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyBOMBS_downloaded_file>

On Unix/macOs:

pip install <path_to_PyBOMBS_downloaded_file>


List distribution:


Project link:

- Homepage
- Download